我有以下HTML代码。 是否可以操纵第二行元素以及如何操作?
<style>
.span11 row{}
</style>
<div class="span11">
<div class="row"></div>
<div class="row"></div>
</div>
有效!
.row:nth-child(2){background:#000;}
答案 0 :(得分:3)
2路:
.row+.row{background:#000;}
.row:nth-child(2){background:#000;}
答案 1 :(得分:0)
是..就像这样。
<style>
.span11 .row{
}
.span11 .row + .row {
}
</style>
答案 2 :(得分:0)
您可以使用CSS3选择器nth-child
示例:
.span11 row:nth-child(2)
{
background:#ff0000;
}
W3 Schools website的更多信息。
请注意,此解决方案可以面向未来,并且可以在大多数现代浏览器中顺利运行,但在某些浏览器(如Internet Explorer 9及更早版本)的过时版本上效果不佳。
答案 3 :(得分:0)
您可以使用
.row:nth-child(2) {
}
答案 4 :(得分:0)
你可以使用nth-child(child number)
.row:nth-child(the numbed child here) {
}
就像你的情况一样,你正在调整第二个孩子,所以
.row:nth-child(2) {
// your styles here
}
答案 5 :(得分:0)
尝试.span11 div:nth-of-type(3n+2) { border:1px solid red;}