如何使用CSS仅选择前三个元素

时间:2018-05-18 08:16:51

标签: html css css3 css-selectors

如何使用: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>

1 个答案:

答案 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>