Chapter 9 in @jay_hoffmann‘s ongoing History of the Web series is all about the communities that led right up to this tweet you’re reading right now. css-tricks.com/chapter-9-com…
We have four properties for fiddling with the cascade on individual properties, but none that allow us to blast everything back to the UA stylesheet defaults. css-tricks.com/inherit-initi…
It's not like this sort of situation would come up often, but knowing that the `outline` property is exempted from the box model makes it a nice candidate for collapsable borders. css-tricks.com/using-the-out…
make taps 300ms faster with 1 line of CSS:
```#css
touch-action: manipulation;
```
means:
element doesn't want double-tap to zoom
result:
browser *immediately* responds to taps instead of waiting 300ms for a "potential" 2nd tap 🤓
caniuse (YES!) caniuse.com/mdn-css_properti…