Introduction
In this lab, we will explore the concept of flexbox centering in CSS. You will learn how to horizontally and vertically center child elements within a parent element using flexbox. By the end of this lab, you will be able to create responsive and visually appealing layouts using flexbox centering techniques.
Flexbox Centering
index.html and style.css have already been provided in the VM.
To center a child element both horizontally and vertically within a parent element using flexbox, follow these steps:
- Create a flexbox layout by setting the parent element's
displayproperty toflex. - Use the
justify-contentproperty to center the child horizontally by setting its value tocenter. - Use the
align-itemsproperty to center the child vertically by setting its value tocenter. - Add the child element within the parent element.
Here's an example code snippet:
<div class="flexbox-centering">
<div>Centered content.</div>
</div>
.flexbox-centering {
display: flex;
justify-content: center;
align-items: center;
height: 100px;
}
Please click on 'Go Live' in the bottom right corner to run the web service on port 8080. Then, you can refresh the Web 8080 Tab to preview the web page.
Summary
Congratulations! You have completed the Flexbox Centering lab. You can practice more labs in LabEx to improve your skills.