Four Layouts for the Price of One

1 ยท CSS-Tricks ยท Jan. 29, 2020, 7:15 p.m.
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 โ€ฆ Read...