I have a nav list. I want the lighter gray area to be clickable as a link as opposed to just the text. The source is:
http://mattcdecker.comeze.com/HELP/
<nav>
<a href="http://mattcdecker.comeze.com/" title="Visit the homepage."></a>
<ul>
<a href="http://mattcdecker.comeze.com/" title="Visit the homepage."></a>
<li><a href="http://mattcdecker.comeze.com/" title="Visit the homepage."></a><a href="work.php" title="View my work.">Work</a></li>
<li><a href="about.php" title="Learn about me.">About</a></li>
<li><a href="contact.php" title="Send me a message!">Contact</a></li>
</ul>
</nav>
CSS
nav{
float:right;
}
nav li{
float:left;
text-transform:uppercase;
font-size:24px;
background:#333;
margin:70px 10px 0 10px;
padding:10px;
}
nav a{
color:#666;
}
nav a:hover{
color:#fff;
}