试题
考点

js语言和框架-Html、Html5-行内元素、块级元素

面5笔5

要将下面代码中超链接文本呈现为红色,不可以使用的样式表是( )。
<div><a href="http://www.w3.org/">链接到W3C</a></div>

A.a:link{color:red}

B.div a:link{color:red}

C.div>a:link{color:red}

D.div:first-child{color:red}

前往“校招VIP”小程序,刷题更快
最新校招难题刷题,快来进刷题群吧
解答

正确答案是 D

1.div:first-child
要满足的条件,首先必须得是div元素,还得是第一个子元素,如果不满足 就不会被选中
2.div:first-of-type
要满足的条件,首先必须得是div元素,还得是第一个出现的div元素,如果不满足 就不会被选中
3.nth-child
a:nth-child(5): 必须是a元素 必须是第五个子元素
4.nth-of-type:
a:nth-of-type:选中所有a元素中的第n个a元素
规律就是child相关的是绝对位置,type相关的是相对位置

评论

麦兜兜麦

2022-09-12 23:00:00

0 0

雾绕空山

2021-09-10 07:30:00

0 0

薄荷

2020-11-10 10:52:03

0 0

天宫

2020-11-10 10:29:46

0 0

天狼星

2020-11-10 10:14:00

0 0

素衣白裙清浅微笑

2020-11-10 10:12:11

0 0

旭日

2020-11-10 10:11:01

0 0

lseap

2020-11-10 10:07:10

0 0

Augenstern1177

2020-09-29 11:36:51

0 0

加载更多