Flexbox – Flex Containers ”; Previous Next To use Flexbox in your application, you need to create/define a flex container using the display property. Usage − display: flex | inline-flex This property accepts two values flex − Generates a block level flex container. inline-flex − Generates an inline flex container box. Now, we will see how to use the display property with examples. Flex On passing this value to the display property, a block level flex container will be created. It occupies the full width of the parent container (browser). The following example demonstrates how to create a block level flex container. Here, we are creating six boxes with different colors and we have used the flex container to hold them. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .container{ display:flex; } .box{ font-size:35px; padding:15px; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6”>six</div> </div> </body> </html> It will produce the following result − Since we have given the value flex to the display property, the container uses the width of the container (browser). You can observe this by adding a border to the container as shown below. .container { display:inline-flex; border:3px solid black; } It will produce the following result − Inline flex On passing this value to the display property, an inline level flex container will be created. It just takes the place required for the content. The following example demonstrates how to create an inline flex container. Here, we are creating six boxes with different colors and we have used the inline-flex container to hold them. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .container{ display:inline-flex; border:3px solid black; } .box{ font-size:35px; padding:15px; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6″>six</div> </div> </body> </html> It will produce the following result − Since we have used an inline flex container, it just took the space that is required to wrap its elements. Print Page Previous Next Advertisements ”;
Category: flexbox
Flexbox – Align Content
Flexbox – Align Content ”; Previous Next In case the flex-container has multiple lines (when, flex-wrap: wrap), the align-content property defines the alignment of each line within the container. Usage − align-content: flex-start | flex-end | center | space-between | space-around | stretch; This property accepts the following values − stretch − The lines in the content will stretch to fill up the remaining space. flex-start − All the lines in the content are packed at the start of the container. flex-end − All the lines in the content are packed at the end of the container. center − All the lines in the content are packed at the center of the container. space-between − The extra space is distributed between the lines evenly. space-around − The extra space is distributed between the lines evenly with equal space around each line (including the first and last lines) center On passing this value to the property align-content, all the lines are packed at the center of the container. The following example demonstrates the result of passing the value center to the align-content property. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .box{ font-size:25px; padding:15px; width:43%; } .container{ display:flex; height:100vh; flex-wrap:wrap; align-content:center; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6”>six</div> </div> </body> </html> It will produce the following result − flex-start On passing this value to the property align-content, all the lines are packed at the start of the container. The following example demonstrates the result of passing the value flex-start to the align-content property. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .box{ font-size:25px; padding:15px; width:40%; } .container{ display:flex; height:100vh; flex-wrap:wrap; align-content:flex-start; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6”>six</div> </div> </body> </html> It will produce the following result − flex-end On passing this value to the property align-content, all the lines are packed at the end of the container. The following example demonstrates the result of passing the value flex-end to the align-content property. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .box{ font-size:25px; padding:15px; width:40%; } .container{ display:flex; height:100vh; flex-wrap:wrap; align-content:flex-end; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6”>six</div> </div> </body> </html> It will produce the following result − stretch On passing this value to the property align-content, the lines will stretch to fill up the remaining space. The following example demonstrates the result of passing the value stretch to the align-content property. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .box{ font-size:25px; padding:15px; width:40; } .container{ display:flex; height:100vh; flex-wrap:wrap; align-content:stretch; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6”>six</div> </div> </body> </html> It will produce the following result − space-around On passing this value to the property align-content, the extra space is distributed between the lines evenly with equal space around each line (including the first and last lines). The following example demonstrates the result of passing the value space-around to the align-content property. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .box{ font-size:25px; padding:15px; width:40%; } .container{ display:flex; height:100vh; flex-wrap:wrap; align-content:space-around; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6”>six</div> </div> </body> </html> It will produce the following result − space-between On passing this value to the property align-content, the extra space is distributed between the lines evenly, where the first line will be at the top and the last line will be at the bottom of the container. The following example demonstrates the result of passing the value space-between to the align-content property. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .box{ font-size:25px; padding:15px; width:40%; } .container{ display:flex; height:100vh; flex-wrap:wrap; align-content:space-between; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6″>six</div> </div> </body> </html> It will produce the following result − Print Page Previous Next Advertisements ”;
Flexbox – Justifying Contents ”; Previous Next Often you can observe an extra space left in the container after arranging the flex items as shown below. Using the property justify-content, you can align the contents along the main axis by distributing the extra space as intended. You can also adjust the alignment of the flexitems, in case they overflow the line. usage − justify-content: flex-start | flex-end | center | space-between | space-around| space-evenly; This property accepts the following values − flex-start − The flex-items are placed at the start of the container. flex-end − The flex-items are placed at the end of the container. center − The flex-items are placed at the center of the container, where the extra space is equally distributed at the start and at the end of the flex-items. space-between − The extra space is equally distributed between the flex-items. space-around − The extra space is equally distributed between the flex items such that the space between the edges of the container and its contents is half as the space between the flex-items. Now, we will see how to use the justify-content property, with examples. flex-start On passing this value to the property justify-content, the flex-items are placed at the start of the container. The following example demonstrates the result of passing the value flex-start to the justify-content property. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .box{ font-size:35px; padding:15px; } .container{ display:flex; border:3px solid black; justify-content:flex-start; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6”>six</div> </div> </body> </html> It will produce the following result − flex-end On passing this value to the property justify-content, the flex-items are placed at the end of the container. The following example demonstrates the result of passing the value flex-end to the justify-content property. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .box{ font-size:35px; padding:15px; } .container{ display:flex; border:3px solid black; justify-content:flex-end; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6”>six</div> </div> </body> </html> It will produce the following result − center On passing this value to the property justify-content, the flex-items are placed at the center of the container, where the extra space is equally distributed at the start and at the end of the flex-items. The following example demonstrates the result of passing the value center to the justify-content property. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .box{ font-size:35px; padding:15px; } .container{ display:flex; border:3px solid black; justify-content:center; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6”>six</div> </div> </body> </html> It will produce the following result − space-between On passing this value to the property justify-content, the extra space is equally distributed between the flex items such that the space between any two flex-items is the same and the start and end of the flex-items touch the edges of the container. The following example demonstrates the result of passing the value space-between to the justify-content property. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .box{ font-size:35px; padding:15px; } .container{ display:flex; border:3px solid black; justify-content:space-between; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6”>six</div> </div> </body> </html> It will produce the following result − space-around On passing this value to the property justify-content, the extra space is equally distributed between the flex-items such that the space between any two flex-items is the same. However, the space between the edges of the container and its contents (the start and end of the flex-items) is half as the space between the flex items. The following example demonstrates the result of passing the value space-around to the justify-content property. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .box{ font-size:35px; padding:15px; } .container{ display:flex; border:3px solid black; justify-content:space-around; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6”>six</div> </div> </body> </html> It will produce the following result − space-evenly On passing this value to the property justify-content, the extra space is equally distributed between the flex-items such that the space between any two flex-items is the same (including the space to the edges). The following example demonstrates the result of passing the value space-evenly to the justify-content property. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .box{ font-size:35px; padding:15px; } .container{ display:flex; border:3px solid black; justify-content:space-evenly; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6″>six</div> </div> </body> </html> It will produce the following result − Print Page Previous Next Advertisements ”;
Flexbox – Align Items
Flexbox – Align Items ”; Previous Next The align-items property is same as justify content. But here, the items were aligned across the cross access (vertically). Usage − align-items: flex-start | flex-end | center | baseline | stretch; This property accepts the following values − flex-start − The flex items were aligned vertically at the top of the container. flex-end − The flex items were aligned vertically at the bottom of the container. flex-center − The flex items were aligned vertically at the center of the container. stretch − The flex items were aligned vertically such that they fill up the whole vertical space of the container. baseline − The flex items were aligned such that the baseline of their text align along a horizontal line. flex-start On passing this value to the property align-items, the flex items were aligned vertically at the top of the container. The following example demonstrates the result of passing the value flex-start to the align-items property. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .box{ font-size:35px; padding:15px; } .container{ display:flex; height:100vh; align-items:flex-start; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6”>six</div> </div> </body> </html> It will produce the following result − flex-end On passing this value to the property align-items, the flex-items are aligned vertically at the bottom of the container. The following example demonstrates the result of passing the value flex-end to the align-items property. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .box{ font-size:35px; padding:15px; } .container{ display:flex; height:100vh; align-items:flex-end; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6”>six</div> </div> </body> </html> It will produce the following result − center On passing this value to the property align-items, the flex-items are aligned vertically at the center of the container. The following example demonstrates the result of passing the value flex-center to the align-items property. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .box{ font-size:35px; padding:15px; } .container{ display:flex; height:100vh; align-items:center; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6”>six</div> </div> </body> </html> It will produce the following result − stretch On passing this value to the property align-items, the flex-items are aligned vertically such that they fill up the whole vertical space of the container. The following example demonstrates the result of passing the value stretch to the align-items property. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .box{ font-size:35px; padding:15px; } .container{ display:flex; height:100vh; align-items:stretch; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6”>six</div> </div> </body> </html> It will produce the following result − baseline On passing this value to the property align-items, the flex-items are aligned such that the baseline of their text align along a horizontal line. The following example demonstrates the result of passing the value baseline to the align-items property. Live Demo <!doctype html> <html lang = “en”> <style> .box1{background:green;} .box2{background:blue;} .box3{background:red;} .box4{background:magenta;} .box5{background:yellow;} .box6{background:pink;} .box{ font-size:35px; padding:15px; } .container{ display:flex; height:100vh; align-items:baseline; } </style> <body> <div class = “container”> <div class = “box box1”>One</div> <div class = “box box2”>two</div> <div class = “box box3”>three</div> <div class = “box box4”>four</div> <div class = “box box5”>five</div> <div class = “box box6″>six</div> </div> </body> </html> It will produce the following result − Print Page Previous Next Advertisements ”;