Link tag inside list item?
html
Solution
Assuming you have a `ol` or `ul` as the parent, you cannot have an `a` tag as a direct child. Try flipping the two, and then playing with your CSS to get the width as you need it:
<li><a href="#">page</a></li>
Problem
My problem is: I have a `<a>` tag inside an `<li>` and the list have css styling to look like a button, but using like this: ``` <a href="#"><li>page</li></a> ``` It isn't correct. How shoud i do? Is there any way that if I click in every place in the `<li>` the link will be triggered?