Answers for "apply css on last child in parent div"

CSS
8

css last child

li:last-child {
    background-color: lime;
}
Posted by: Guest on May-20-2020
0

apply css on last child in parent div

.parent > *:last-child {
  background-color: red;
}
Posted by: Guest on August-26-2020
8

css last child

li:last-child {
    background-color: lime;
}
Posted by: Guest on May-20-2020
0

apply css on last child in parent div

.parent > *:last-child {
  background-color: red;
}
Posted by: Guest on August-26-2020

Code answers related to "apply css on last child in parent div"

Browse Popular Code Answers by Language