如何使用:nth-child()
选择器仅选择前三个元素?
section > figure:nth-child( ? ) {
/* ... */
}
<section>
<figure>1</figure> <!-- select this -->
<figure>2</figure> <!-- and this -->
<figure>3</figure> <!-- and this -->
<figure>4</figure>
<figure>5</figure>
<figure>6</figure>
</section>
答案 0 :(得分:9)
你可以这样做:
section > figure:nth-child(-n+3) {
border: 1px solid;
}
<section>
<figure>1</figure>
<figure>2</figure>
<figure>3</figure>
<figure>4</figure>
<figure>5</figure>
<figure>6</figure>
</section>