HTML5&CSS3练习笔记(二)
HTML5&CSS3 练习CSS3伪选择器使用
1、first-line 格式:元素:first-line
2、first-letter 格式:元素:first-letter
3、before 格式:元素:before
4、after 格式:元素:after
5、root 格式:元素:root
6、not 格式:元素:not(标签名)
7、empty 格式::empty(标签名)
8、target 格式::target
9、first-of-type 格式:E:first-of-type
10、last-of-type 格式:E:last-of-type
11、nth-child 格式:E:nth-child(n)
12、nth-last-child 格式:E:nth-last-child
13、nth-of-type 格式:E:nth-of-type(n)
14、nth-last-of-type 格式:()
15、only-child 格式:E:only-child