I have the following markup,
Just to throw this option out there:
This is the style I use in my menus, it makes the list item itself a hyperlink (similar to how one would make an image a link).
For styling, I usually apply something like this:
nav ul a {
color: inherit;
text-decoration: none;
}
I can then apply whatever styling to the
Note: Validators will complain about this method, but if you're like me and do not base your life around them, this should work just fine.