I have tried all the other ideas on stack Overflow, and nothing is working for me - so I'm starting to think i'm missing something silly. All I am trying to do is center a link tag in a div tag. I have tried doing right and left auto margins, as well as text align etc. Do you see an error I have overlooked? The links are inside a div with the id of header.
#header a{
font-size: 25px;
color: black;
text-decoration: none;
margin-left: auto;
margin-right: auto;
line-height: 75px;
text-align: center;
}
<ul id="menu">
<li class="menuItem"><a href="home.html">Home</a></li>
<li class="menuItem"><a href="music.html">Music</a></li>
<li class="menuItem"><a href="services.=html">Services</a></li>
<li class="menuItem"><a href="contact.html">Contact</a></li>
<li class="menuItem"><a href="bio.html">Bio</a></li>
</ul>