Answers for "last of type class css"

CSS
2

css last element with class name

[class~='list']:last-of-type  {
    background: #000;
}
Posted by: Guest on June-30-2021
1

css last of type

li {
  color: goldenrod;
}

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

Browse Popular Code Answers by Language