Answers for "last element css selector style"

CSS
1

css last element with class name

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

selecting last child css

p:last-child {
  font-size: 0.75em;
}
Posted by: Guest on January-31-2020

Browse Popular Code Answers by Language