Answers for "select nth last of type css"

CSS
1

css last of type

li {
  color: goldenrod;
}

li:last-of-type {
  color: lightgrey;
}
Posted by: Guest on July-17-2021
0

nth last of type

span:nth-last-of-type(0) {
  background-color: lime;
}
Posted by: Guest on June-17-2021

Browse Popular Code Answers by Language