In a ul li list , how to make an alternate li bold. Like shown in the image.
http://i.stack.imgur.com/a3bI8.jpg
Thanks
|
In a ul li list , how to make an alternate li bold. Like shown in the image. http://i.stack.imgur.com/a3bI8.jpg Thanks |
|||||||||
|
|
Use the nth-child(even) pseudo selector:
Use odd or even depending on whether you want the first one bold. Demo on jsfiddle. |
|||
|
|
|
You can do something like this
Note:If you want to start from first li element then use odd if you want to start from second element then use even as alexn suggests in his answer. |
|||
|
|