Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> .box { width: 300px; height: 80px; border: 1px solid #666; display: -webkit-flex; /* Safari */ display: flex; } .box div { -webkit-flex-grow: 0; /* Safari 6.1+ */ -webkit-flex-shrink: 0; /* Safari 6.1+ */ -webkit-flex-basis: 40px; /* Safari 6.1+ */ flex-grow: 0; flex-shrink: 0; flex-basis: 40px; } .box div:nth-of-type(2) { -webkit-flex-basis: 140px; /* Safari 6.1+ */ flex-basis: 140px; } </style> </head> <body> <h2>Flex-basis property example</h2> <div class="box"> <div style="background-color: #eeeeee;">40px</div> <div style="background-color: #1c87c9;">140px</div> <div style="background-color: #8ebf42;">40px</div> <div style="background-color: #cccccc;">40px</div> <div style="background-color: #666666;">40px</div> </div> </body> </html>