我需要选择放在h1元素之后的第4个div元素,我认为我的方式不是专业的方式,css中有指定的选择器吗?请注意,我必须在不向div添加id或class属性的情况下执行此操作。
h1+div+div+div+div{
background-color:red;
}
<h1>css</h1>
<div>just some text here,</div><hr>
<div>just some text here,</div><hr>
<div>just some text here,</div><hr>
<div>just some text here,</div><hr>
<div>just some text here,</div><hr>
答案 0 :(得分:6)
您可以使用 nth-of-type
和 subsequent sibling combinator
选择它,以便在div
之后选择第4个h1
像这样:
h1~div:nth-of-type(4) {
background-color:red;
}
css中的~
被称为后续兄弟组合,它允许您选择第一种和第二种元素类型共享父级而第一种元素位于第二种元素之前的第二种元素类型文档中的元素类型。
jsFiddle: https://jsfiddle.net/AndrewL64/crq43gs5/
如果您确定hr
之间没有任何divs
标记或其他元素,则可以使用nth-child
代替但必须使用5,而不是4,因为〜也计算h1标签。它看起来像这样:
h1~div:nth-child(5) {
background-color:red;
}
答案 1 :(得分:0)
专业方式:
向该div添加一个类,并按类
进行选择 .forthDiv{
background-color:red;
}
<div class="forthDiv">sometext</div>
非专业,有时需要的方式:
div:nth-of-type(4){
background-color:red;
}