I am trying to center my navigation bar. Can't come up with the right code. Can some one please tell me what I am not doing in my css?
Code:
* {
padding: 0;
margin: 0;
}
nav {
background-color: black;
height: 50px;
}
nav ul {
width:100%;
margin: 0 auto;
border-bottom: 2px solid #f7b007;
}
nav ul li {
list-style-type: none;
width: 90px;
float: left;
border-right: 1px solid #ccc;
text-align: center;
}
li a {
text-decoration: none;
color: white;
line-height: 50px;
display: block;
font-family: arial, helvetica, sans-serif;
font-size: .2em;
font-weight: bold;
}
li a:hover {
background-color: #494446;
color: white;
}
header {
width: 2000;
margin:0px auto;
height: 130px;
}
Last edited by a moderator: