搜尋

首頁  >  問答  >  主體

css3选择器nth-of-type的问题

.content .box2:nth-of-type(2) {
     background: #fed;
}
<div class="content">
    <div class="box1">box1</div>
    <p class="box2">box2</p>
    <p>text</p>
    <p class="box2">box2</p></div>

为什么没有选择到任何一个元素,不应该选择到第2个.box2吗?

高洛峰高洛峰2957 天前846

全部回覆(1)我來回復

  • 三叔

    三叔2016-10-24 16:06:28

    div class="content">
        box1
        box2

        box2

        box2

  • 这样才能选择上第2个.box2

    回覆
    0
  • 取消回覆