On Github christopheradams / css3-for-HTML5
(hint: a lot)
Oh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard).CSS3 contains over 50 modules! Let's see!
Color, Namespaces, Selectors, Media Queries
Style Attributes
Backgrounds and Borders, Image Values and Replaced Content, Marquee, Multi-column Layout, Speech, Values and Units, Mobile Profile, TV Profile
Animations, Flexible Box Layout, Text, Fragmentation, Transforms, Transitions, Print Profile
Conditional, Fonts, Paged Media, Basic User Interface, Writing Modes, CSSOM View
Cascading and Inheritance, Device Adaptation, Exclusions and Shapes, Generated Content for Paged Media, Grid Layout, (Grid) Template Layout, Line Grid, Lists Level, Positioned Layout, Presentation Levels, Regions, Tables, Selectors, Object Model, Compositing and Blending, Filter Effects, Masking, Box Alignment, Text Decoration, Intrinsic & Extrinsic Sizing, Counter Styles
CSS Basic Box Model, Generated Content, Line Layout, Ruby, Syntax, Backgrounds and Borders
Behavioral Extensions, Hyperlink Presentation, Grid Positioning
www.w3.org/Style/CSS/current-work
<style> </style>
<style> /* Rules */ </style>
<style> /* Rule */ #selector { } </style>
<style> /* Rule */ #selector { property: value; } </style>
<style> /* Rule */ #selector:pseudo-class { property: value; } </style>
New selectors in CSS3.
<style> #big-box{ background-color: gray; } .small-box{ background-color: lightskyblue; } .small-box:first-child { background-color: hotpink; } </style>
E:nth-child(n)
E:nth-last-child(n)
E:nth-of-type(n)
E:nth-last-of-type(n)
E:first-child
E:last-child
E:first-of-type
E:last-of-type
E:only-child
E:only-of-type
E:empty
<style> #big-box{ background-color: gray; } .small-box{ background-color: lightskyblue; } .small-box.left { float: left; } .small-box.right { float: right; } .small-box:not(.left) { background-color: hotpink; } </style>
Over 100 new properties in CSS3!
(but first a warning)
-moz, -webkit, -ms, -o
<style> /* Use prefixes if you must... */ .box { -o-transition: all 1s linear; -ms-transition: all 1s linear; -moz-transition: all 1s linear; -webkit-transition: all 1s linear; /* ...but always include the un-prefixed version */ transition: all 1s linear; } </style>