I have an image as a navigation bar that I wanted centered on the page. It has a fixed position which may be making it so it can't be centered.
HTML & CSS:
.navbar {
display: block;
position: fixed;
top: 0;
text-align: center;
}
<img src="Images/NavBar.png" alt="" class="navbar" usemap="#navbar-map" />
I have tried center tags, text-align: center
, and left: auto; right: auto
. None work. What's going wrong?