Andrzej Mazur | meet.js | Warszawa | 05.11.2011
:matches()
li a:link, li a:hover, li a:visited, li a:focus
li a:matches(:link, :hover, :visited, :focus)
:-moz-any()
Mozilli
:not()
p:not(.active, .visible)
:any-link
a:link, a:visited
=> a:any-link
:local-link
http://end3r.com/portfolio/client/gtech/
:local-link(2)
http://end3r.com/portfolio/client/
:past, :current, :future
text-to-speech, napisy do filmów WebVTT
:indeterminate
checkbox, radio button
:nth-match, :nth-last-match
:nth-child()
+ :matches()
:nth-child(even)
:matches(.active)
li a:nth-match(even of .active)
:column, :nth-column, :nth-last-column
:nth-column(even)
ul li a.active
ul ?li a.active
filter: grayscale, blur, sepia
img { filter: grayscale(0.25); }
img { filter: blur(5,2) sepia(1); }
filter: file.fs
img { filter: custom(url(foo.fs), 20 20, phase 90); }
width: calc((12em * 3) + 10px);
height: min(3em, 30px);
@var $kolorTekstu #FF0000;
h1 { color: $kolorTekstu; }
@supports (display: grid) {}
@supports (background: linear-gradient) and (transform: rotate3d) {}
@mixin fragment { color: #F00; font-size: 14px; }
h1 { @mix fragment; margin: 10px; }
@mixin innyFragment($kolor #F00) { color: $kolor; font-size: 14px; }
h1 { @mix innyFragment(#00F); margin: 10px; }
h1 { border: 1px solid #F00;
& a { color: #00F;
& :hover { color: #FF0; }
}
}