- Sometimes art content
- He/Him or They/Them
| Blog | https://iamschulz.com |
| Subscribe | https://iamschulz.com/index.xml |
| CovidSweeper | https://covidsweeper.netlify.app/ |
| JS Synth | https://iamschulz.github.io/js-synth/ |
| Blog | https://iamschulz.com |
| Subscribe | https://iamschulz.com/index.xml |
| CovidSweeper | https://covidsweeper.netlify.app/ |
| JS Synth | https://iamschulz.github.io/js-synth/ |
You don't need #HTML !
😄
Une page Web sans la moindre trace de code HTML, entièrement bâtie en texte…
https://no-ht.ml/
C'est possible, pour peu qu'on maîtrise un peu #Unicode et qu'on arrive à trouver les bons caractères parmi les près de 150 000 existant !
The #CSSWG just resolved to make the `display` property animatable, with non-`none` values given priority during the transition. It's still discrete - there's no intermediate values between `block` & `none` - but this allows toggling it as part of a transition or animation.
For example (from @flackr) this would become `display:none` when the transition completes:
```css
.hide {
transition: opacity 200ms, display 200ms;
display: none;
opacity: 0;
}
```
https://github.com/w3c/csswg-drafts/issues/6429#issuecomment-1318933547
https://www.w3.org/TR/css-display-3/#the-display-properties I thought we were going for discrete for all properties that can't be intelligently interpolated, and that "not animatable" was reserved ...