I want to have clickable menu buttons so I’m using a bullet list like so:
<ul> <a href=""><li>LINK</li></a> </ul>
Works great but doesn’t validate.
This validates:
<ul> <li><a href="">LINK</a></li> </ul>
But only the text is clickable. The <li> has CSS to make it a big button so no part of the button functions except the small text area.
Continue reading »