suchen

Heim  >  Fragen und Antworten  >  Hauptteil

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吗?

高洛峰高洛峰2954 Tage vor842

Antworte allen(1)Ich werde antworten

  • 三叔

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

    div class="content">
        box1
        box2

        box2

        box2

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

    Antwort
    0
  • StornierenAntwort