The CSS Working Group https://www.w3.org/Style/CSS/members
Slide 5
Discussion logged on GitHub https://github.com/w3c/csswg-drafts/issues
Slide 6
CSS Spec Levels Where is CSS4?
Slide 7
CSS Selectors Level 3 W3C Recommendation
Slide 8
CSS Selectors Level 4 Working Draft
Slide 9
There is no CSS4. https://rachelandrew.co.uk/archives/2016/09/ 13/why-there-is-no-css4-explaining-css-levels/
Slide 10
Phases to become a W3C Recommendation Working Draft (WD) Candidate Recommendation (CR) Proposed Recommendation (PR) W3C Recommendation (REC) https://www.w3.org/2018/Process-20180201/#maturity-levels
Scroll Snap Snapping on the x axis
body { display: flex; overflow-x: scroll; scroll-snap-type: x mandatory; } img { width: 31vw; height: 300px; margin: 0 3.5vw 0 0; object-fit: cover; scroll-snap-align: start; }
Slide 42
Slide 43
Scroll Snap Snapping on the y axis
.list { height: 400px; width: 250px; overflow-y: scroll; scroll-snap-type: y mandatory; } .list li { scroll-snap-align: start; }