Issue
i am trying to center the list i made under the tag navlist in the navbar which is a div with class bar . Can u tell how do i do it , below are the html and css code . The navbar is the one on top with green color
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet" type="text/css" />
<title></title>
</head>
<body>
<div class="bar">
<nav>
<ul class="navlist">
<li><a href='#' class="link1">Search</a></li>
<li><a href='#' class="link1">Browse</a></li>
<li><a href='#' class="link1">Tags</a></li>
<li><a href='#' class="link1">Filter</a></li>
<li><a href='#' class="link1">Dev</a></li>
</ul>
</nav>
</div>
</div>
</body>
</html>
*{
margin: 0px;
}
.navlist{
list-style: none ;
display: flex ;
background: red ;
padding: 0px ;
margin: 0px ;
width: 300px
}
.bar{
height:100px ;
background: green ;
justify-content: center
}
.link1{
padding-left: 10px;
text-decoration: none ;
color: black ;
font-size: 20px
}
Solution
Please add 'margin: 0 auto;' to .navlist
Answered By - Keyvan Soleimani
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.