I am adding an anchor tag inside ul and inside anchor tag I am adding li. But when I tested this on html validator it gives me error. Is there a proper way to achieve this?<
This question is very old but I want to add something to it:
This CSS should also force the anchor element be the same width and height of the parent li which would achieve the desired effect as well.
ul li a { width:inherit; height:inherit; }