- CSS orākuls
- 6.10.03 15:20
-
Bieži vien ir nepieciešams uzzināt, ko iekš CSS nozīmē tas selektors vai tā kombinācija. Šī problēma sāk augt augumā ar CSS3 tuvošanos. Tāpēc, mīlīši, piedāvāju jums CSS selektoru orākulu.
body > h2:not(:first-of-type):not(:last-of-type) { color: #000; }
Augstāk minētais piemērs tranformējas uz zemāk redzamo tekstu:
Selects any
h2
element that is not a first child of its type and that is not a last child of its type that is a child of abody
element.