I have a navigation that I am using a list for. I have it in a , but that is messing up my UI because it has weird automatic margins. I tried without
It's not valid HTML to use outside an ol, ul, or menu element. It's much better to assign a class to the ul element:
ol
ul
menu
And then use CSS to remove the margin and padding:
.nav { margin: 0; padding: 0; }