It looks like a padding issue – the extra seems to be the default padding-left for the ul element. Just alter your CSS slightly:
#nav ul {
width: 100%;
float: left;
background-color: #333333;
margin: 0px;
padding: 0;
}
See JSFiddle
1
solved HTML/CSS: navigation bar won’t fit inside the container layout [closed]