Notes: Flexbox
Introduction to Flexbox
Flex Direction
Primary Axis: justify-content
Cross-Axis: align-items
Flex Row Example
<head>
<style>
.container {
display: flex;
flex-direction: row;
justify-content: center;
background-color: blue;
}
.container > div {
background-color: lightgrey;
margin: 10px;
padding: 20px;
font-size: 30px;
width: 55px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div>1</div>
<div>2</div>
<div>3</div>
</div>
</body>
Column Flex Example

Flex Box Wrap


Centering Content on a Page Using FlexBox

Resources
Last updated