h1 { }
div { }
* { }
section, h1 { }
#only { }
.widget { }
.center { }
a[href] { }
p[id="only"] { }
p[class~="out"] { }
p[class|="out"] { }
section[id^="sect"] { }
div[class$="2"] { }
div[class*="w"] { }
header h1 {}
header > p { }
section + p { }
section ~ p { }
a:link { }
a:visited { }
a:hover { }
a:active { }
a:focus { }
input:checked + span { }
input:enabled + span { }
input:disabled + span { }
p:first-child { }
ul > li:last-child { }
ul > li:nth-child(2n) { }
section > p:nth-child(2n+1) { }
ul > li:first-child { }
li:last-child { }
div > div:nth-child(4) { }
div:nth-last-child(2) { }
section > p:nth-last-child(2n + 1) { }
p:first-of-type { } // p의 형제 엘리먼트 중 첫번째 p엘리먼트
div:last-of-type { }
ul:nth-of-type(2) { }
p:nth-last-of-type(1) { }
input:not([type="password"]) { }
div:not(:nth-of-type(2)) { }
input[type="text"]:valid { }
input[type="text"]:invalid { }
https://flukeout.github.io/ -> 게임으로 학습할 수 있음