Answers for "css style every other element"

CSS
0

css select every other element

.item:nth-child(odd) .description {
    background-color: red;
}
Posted by: Guest on August-25-2021

Browse Popular Code Answers by Language