Home > Designing, Others > Four Layouts for the Price of One

Four Layouts for the Price of One

January 29th, 2020 Leave a comment Go to comments

Pretty notable when a tweet about a flexbox layouts gets 8K+ likes on Twitter!

4 layouts for the price of 1, thanks flex ?

css`
form {
display: flex;
flex-wrap: wrap;

& > input {
flex: 1 1 10ch;
margin: .5rem;

&[type=”email”] {
flex: 3 1 30ch;
}
}
}
`

view source on Codepen ?https://t.co/Q8H5ly2ZIe pic.twitter.com/y6HqxClILZ

— Adam Argyle (@argyleink) January 14, 2020

That’s “native” CSS nesting in use there as well, assuming we get that at some point and the syntax holds.

There was some feedback that the code is inscrutable. I don’t really think so, to me it says:

  • All these inputs are allowed both to shrink and grow
  • There is even spacing around all of it
  • The email input should be three times bigger than the others
  • If it needs to wrap, fine, wrap.

A great use case for flexbox, which is the right layout mechanism when you aren’t trying to be super precise about the size of everything.

There is a blog post (no byline ????) with a more longwinded explanation.


This reminds me a lot of Tim Van Damme’s Adaptive Photo Layout where photos lay themselves out with flexbox. They don’t entirely keep their aspect ratios, but they mostly do, thanks to literally the flexibility of flexbox.

Here’s a fun fork of the original.

It’s like a zillion layouts for the price of one, and just a few lines of code to boot.

The post Four Layouts for the Price of One appeared first on CSS-Tricks.

Categories: Designing, Others Tags:
  1. No comments yet.
  1. No trackbacks yet.
You must be logged in to post a comment.