css - Centered and fixed navigation -
i have css below, makes navigation bar centered. however, want add following line "position:fixed", if so, navigation bar no longer centered, , no longer have border lines stretched across screen.
any suggestions ? (thanks !)
.navbar{ border:1px solid #ccc; border-width:1px 0; list-style:none; margin:0; padding:0; text-align:center; } .navbar li{ display:inline; } .navbar a{ display:inline-block; padding:10px; } body { padding-left: 0em; padding-bottom: 0em; color: white; background-color: #708090; font-family: georgia, times, serif}
html
<nav> <ul> <li><a href="#">first nav item</a></li> <li><a href="#">second nav item</a></li> <li><a href="#">third nav item</a></li> </ul> </nav>
css
nav { position: fixed; top:0; left:0; width:100%; height:40px; line-height:40px; text-align: center; } nav li { display: inline; }
Comments
Post a Comment