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

I have created a li ul menu and it's working perfectly. However, I want the last li in the code below to have a different background.

I've tried adding style="background-color:#F00" to the li in question, but it doesn't work.

Does anyone know how this can be done?

Thanks in advance,

<!DOCTYPE html>

<html>

<head>

<style type="text/css">

#cssmenu {
background:#a8ac9d;
width: 270PX;
}
#cssmenu > ul {
padding:1px 0;
margin:0px;
list-style:none;
width:270px;
height:21px;
font:normal 8pt verdana, arial, helvetica;
}
#cssmenu > ul li {
margin:0;
padding:0;
display:block;
float:left;
position:relative;
width:270px;
}
#cssmenu > ul li a:link, #cssmenu > ul li a:visited {
padding:4px 0;
display:block;
text-align:center;
text-decoration:none;
background:#a8ac9d;
color:#ffffff;
width:270px;
height:13px;
}
#cssmenu > ul li:hover a, #cssmenu > ul li a:hover, #cssmenu > ul li a:active {
padding:4px 0;
display:block;
text-align:center;
text-decoration:none;
background:#a8ac9d;
color:#ffffff;
width:270px;
height:13px;
}
#cssmenu > ul li ul {
margin:0;
padding:0px 0px 0;
list-style:none;
display:none;
background:#a8ac9d;
width:270px;
position:absolute;
top:21px;
left:0px;
}
#cssmenu > ul li:hover ul {
display:block;
width: 270PX;
}
#cssmenu > ul li ul li {
width:146px;
clear:left;
width:270px;
}
#cssmenu > ul li ul li a:link, #cssmenu > ul li ul li a:visited {
clear:left;
padding:4px 0;
width:270px;
position:relative;
z-index:1000;
}
#cssmenu > ul li ul li:hover a, #cssmenu > ul li ul li a:active, #cssmenu > ul li ul li a:hover {
clear:left;
background:#a8ac9d;
padding:4px 0;
width:270px;
position:relative;
z-index:1000;
}
</style>

</head>

<body>

<div id='cssmenu'>
<ul>
<li><a href='#'><span>Products</span></a>
<ul>
<li><a href='#'><span>Product 1</span></a></li>
<li style="background-color="#F00"><a href='#'>Product 2</a></li>
</ul>
</li>
</ul>
</div>

</body>

</html>
share|improve this question
li:last-child? and change <li style="background-color="#F00"><a href='#'>Product 2</a></li> to <li style="background-color: #F00"><a href='#'>Product 2</a></li> – Morpheus Jan 23 at 10:45
style="background-color="#F00" in the submited code should be style="background-color:#F00;" – Anton Ganhammar Jan 23 at 10:47

3 Answers

up vote 2 down vote accepted

You need to write it for the a tag which is inside the li

Add this

#cssmenu ul li ul li:last-child a{
background:red
}

DEMO

share|improve this answer
Brilliant, I knew it would be simple, thanks so much! – Darren Riches Jan 23 at 10:52

I didn't read in detail but at first glance, this line is the problem.

<li style="background-color="#F00"><a href='#'>Product 2</a></li>

Should be

<li style="background-color:#F00"><a href='#'>Product 2</a></li>

Edit: The code above does not work!!! It's because the element having the background color is . So you should change to this.

<li><a href='#' style="background-color:#F00">Product 2</a></li>
share|improve this answer
This still wont work – Sowmya Jan 23 at 10:52

When you write style attribute, the syntax to be followed is as in the css. you have written style="background-color="#F00" and it should be style="background-color: #F00"

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.