Make an <a> tag move onto a new line, without using "display:block"
css
Solution
Have you tried `float:left; clear:left` ?
Problem
I would like the navigation links on this page to each appear on their own line: A. Without using "`display:block`" - as that makes the hover animation take up the full width of the container, not just the `<a>` element. B. Without using `<br>` tags, as I am eventually looking to create a responsive site with a horizontal navigation on smaller screens. Thanks for your help.