:nth-​​child(2)和:nth-​​of-type(2)不选择

时间:2016-03-17 13:16:52

标签: html css

我有以下HTML,我想选择第二个孩子<div class="header content"> <div class="widget block block-static-block"></div> <div class="widget block block-static-block"></div> <!-- this is the one I want to select --> </div>

.header.content .widget.block-static-block:nth-of-type(2) {}
.header.content .widget.block-static-block:nth-child(2) {}

我尝过以下CSS:

div

他们都没有选择这个PDF::API2

任何人都可以解释我做错了吗?

1 个答案:

答案 0 :(得分:0)

如果您只有两个,可以使用

选择它
.widget.block.block-static-block:last-child{
//your code
}