Other
Testing
TODO: https://github.com/Heydon/REVENGE.CSS
CSS is actually “Turing Complete”
Article - from Solved with CSS! Logical Styling Based on the Number of Given Elements
CSS just changed forever… plus 7 new features you don't know about
Source - Youtube
css
.centered {
display: block;
align-content: center;
}- Property-at-rule
@starting-style
Details
From MDN
css
[popover]:popover-open {
opacity: 1;
transform: scaleX(1);
}
@starting-style {
[popover]:popover-open {
opacity: 0;
transform: scaleX(0);
}
}