Answers for "how to take items of navbar in center"

CSS
3

center nav bar css

div#nav{
  text-align: center;
}
div#nav ul{
  display: inline-block;
}
Posted by: Guest on March-18-2021
0

centered navigation

.nav{
    border:1px solid #ccc;
    border-width:1px 0;
    list-style:none;
    margin:0;
    padding:0;
    text-align:center;
}
.nav li{
    display:inline;
}
.nav a{
    display:inline-block;
    padding:10px;
}
Posted by: Guest on February-24-2022

Code answers related to "how to take items of navbar in center"

Browse Popular Code Answers by Language