CSS

Styling every second ol or li or other element in css

Styling every second ol or li or other element in css


Styling every second ol or li or other element in css

Here is how you style every second li, or lo or other element in css:

the even:

ul li:nth-child(even) {
    border: #ccc 1px solid;
}

the odd:

ul li:nth-child(even) {
    border: #ccc 1px solid;
}

Published: 1st June 2016 by

Adverts