Home >Web Front-end >CSS Tutorial >What a busted water heater and wet boxes taught me about flexbox.
Our water heater broke. I walked in to the garage and heard running water. Checked the house faucets off, toilet not running, Checked outside. nope hose off. recheck garage still hear water, maybe it just noise as gas heats the water. Walk over and there's water in floor.
The Water heater was leaking from top. There are puddles on the floor and through the carpet. We have some old carpet on the floor so it's not cold bare floor. It now has a stream through it.
The boxes stored on the carpet have wicked up water. Boxes are wet and soggy. So are some of the contents. There were a few paperbacks and some Jurassic Park dinosaurs in those boxes. The books are water damaged but most will dry out.
These boxes are no longer sturdy they are flexible.
These boxes = flexbox. Which gave me a click bait LinkedIn like title and an excuse to write about flexbox.
In CSS flexbox is used to arrange items horizontally or vertically in either rows or columns. The items will flex to fill the space in the container.
To start using flex add display:flex to the parent flex-container that you want to hold your child elements.
.flex-container { display: flex; }
<flex-container> <div> <p>Then decide if you want row or columns with flex-directionoptions are row, row-reverse, column, and column-reverse. Row lines things up left-to-right, row-reverse lines them right-to-left. You might guess Column and column-reverse are similar but top-to-bottom and bottom-to-top respectively.<br> </p> <pre class="brush:php;toolbar:false">.flex-container { display: flex; flex-direction: row; }
<flex-container> <div> <h2> Justify Content </h2> <p>So how to arrange things horizontally? Use justify-content: to align the books in your boxes. Here you have several options.</p>
.flex-container { display: flex; flex-direction: row; justify-content: center; }
This image shows the books centered in the box.
This image shows the books with space-around applied. There are gaps between the start and end of the box.
This image shows the books with space-between applied. Books are pushed to front, center, end of box with space between them.
This image shows flex-start. All the books are shoved to the start or left side of the box.
This images shows flex-end. All the books are shoved to the end or right side of the box.
Use align-items to vertically align things inside the parent container.
.flex-container { display: flex; }
Illustrated with CSS. These images were made using CSS.
This is just an introduction to flexbox check out Wes Bos' What the flex box or MDN Web Docs for more in depth explanations.
The above is the detailed content of What a busted water heater and wet boxes taught me about flexbox.. For more information, please follow other related articles on the PHP Chinese website!