Only

Arguments

NameTypeDescription
string

The pseudo-class, class or id selectors. Accepts first, last, odd, even and class or id selectors.

number

The index number of the element(s) in the list. It is also possible to make multiple selections.

* Important: Passing multiple arguments is only for numeric values and the values must be comma-separated.

Examples

Suppose you have a group of items like in the example below and you want to make some style changes only for some of them.

<div class="list-wrapper">
  <div class="list-item">01</div>
  <div class="list-item">02</div>
  <div class="list-item">03</div>
  <div class="list-item">04</div>
  <div class="list-item">05</div>
  <div class="list-item">06</div>
</div>

Let’s start with the first one!

.list-wrapper{
  .list-item{
    @include only(first) {
      background-color: #5bc0bb;
      color: white;
    }
  }
}
//CSS Output
.list-wrapper .list-item:first-of-type {
  background-color: #5bc0bb;
  color: white;
}
01
02
03
04
05
06

Now, let’s try to get the last item in the list.

.list-wrapper{
  .list-item{
    @include only(last) {
      background-color: #5bc0bb;
      color: white;
    }
  }
}
//CSS Output
.list-wrapper .list-item:last-of-type {
  background-color: #5bc0bb;
  color: white;
}
01
02
03
04
05
06

Now, let’s target the second item in the list.

.list-wrapper{
  .list-item{
    @include only(2) {
      background-color: #5bc0bb;
      color: white;
    }
  }
}
//CSS Output
.list-wrapper .list-item:first-of-type {
  background-color: #5bc0bb;
  color: white;
}
01
02
03
04
05
06

Let’s get those elements whose numeric position is odd (e.g. 1, 3, 5, …).

.list-wrapper{
  .list-item{
    @include only(odd){
      background-color: #5bc0bb;
      color: white;
    }
  }
}
//CSS Output
.list-wrapper .list-item:nth-of-type(odd) {
  background-color: #5bc0bb;
  color: white;
}
01
02
03
04
05
06

Now, let’s try something really fancy!

Remember that when you make a multiple selection the arguments you pass must be numbers and separated by comma.
.list-wrapper{
  .list-item{
    @include only(4, 5, 6) {
      background-color: #5bc0bb;
      color: white;
    }
  }
}
//CSS Output
.list-wrapper .list-item:nth-of-type(4), 
.list-wrapper .list-item:nth-of-type(5), 
.list-wrapper .list-item:nth-of-type(6) {
  background-color: #5bc0bb;
  color: white;
}
01
02
03
04
05
06

Now suppose you don’t know the number of the items that will appear in the list, and that you want to target only the third item from the very end. How can you achieve that? It’s surprisingly easy!

Information: You can pass negative values to target elements based on their position among a group of siblings, counting from the end.
.list-wrapper {
  .list-item {
    @include only(-3) {
      background-color: #5bc0bb;
      color: white;
    }
  }
}
//CSS Output
.list-wrapper .list-item:nth-last-of-type(3) {
  background-color: #5bc0bb;
  color: white;
}
01
02
03
04
05
06

Now let’s pass multiple negative values.

.list-wrapper {
  .list-item {
    @include only(-1, -2, -4) {
      background-color: #5bc0bb;
      color: white;
    }
  }
}
//CSS Output
.list-wrapper .list-item:nth-last-of-type(1), 
.list-wrapper .list-item:nth-last-of-type(2), 
.list-wrapper .list-item:nth-last-of-type(4) {
  background-color: #5bc0bb;
  color: white;
}
01
02
03
04
05
06

Now let’s pass the positive and negative values ​​together.

.list-wrapper {
  .list-item {
    @include only(1, -2) {
      background-color: #5bc0bb;
      color: white;
    }
  }
}
//CSS Output
.list-wrapper .list-item:nth-of-type(1), 
.list-wrapper .list-item:nth-last-of-type(2) {
  background-color: #5bc0bb;
  color: white;
}
01
02
03
04
05
06