Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Did you get any help? – freebird Oct 8 '12 at 5:29
yes. Thanks for the help – Ajith Oct 8 '12 at 5:36
If the answer was helpful please do upvote it. – freebird Oct 8 '12 at 5:37
vote up require 15 reputation. :( – Ajith Oct 8 '12 at 5:39

2 Answers

up vote 6 down vote accepted

Use the nth-child(even) pseudo selector:

li:nth-child(even) {
    font-weight: bold;
}

Use odd or even depending on whether you want the first one bold.

Demo on jsfiddle.

share|improve this answer
Beat me by a minute.+1 for the answer. – freebird Oct 8 '12 at 5:23

You can do something like this

ul li:nth-child(odd)
{
font-weight:bold;
}

See Demo

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.