Hi
I have an anchor behaviour defined for list item in css as follows:
#nav li a
{
color: #ad0000;
}
I want to extend it in such a way that it include "display: block;"
?????? //What to write here?
{
display:block;
}
<li><a href="withoutBlock.php">Contact Us</a></li>
<li><a href="withBlock.php" class = ???? >with Block</a></li>
I want some of the list items as blocked where as others not. How can I extend this and what to write in html to get the desired feature.
Thanks