I'm having trouble to center the links in the navigation bar, because I want the buttons to be in the center of the header bar, but trying everything, so far they always remain on the left
.header {
overflow: hidden;
background-color: #f1f1f1;
padding: 10px 20px;
border-radius: 5px;
}
.header a {
float: left;
color: black;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 5px;
}
.header a:hover {
background-color: #ddd;
color: black;
}
.header a.active {
background-color: #e1e1e1;
color: black;
}
<header>
<nav class="header">
<a href="#default" class="logo">CompanyLogo</a>
<a class="active" href="#home">Home</a>
<a href="#contact">Contact</a>
<a href="#about">About</a>
</nav>
</header>
Thanks to anyone who will help me!