It may seem like a simple task, but I'm unsure of the best approach. In my header, I have 4 links along with a logo positioned to the left. All of these links are contained within a div called main-header-right. Is there a way to add spacing between these links without having to assign individual classes to each one?
.main-header {
width: 100%;
padding: 1% 1% 0%;
}
.logo {
padding-left: 1%;
font-size: 30px;
}
.main-header-right {
float: right;
font-size: 20px;
}
<div class="main-header">
<a href="index.html" class="logo"><b>Fallen</b></a>
<div class="main-header-right">
<a href="#">About Me</a>
<a href="#">Portfolio</a>
<a href="#">Prices</a>
<a href="#">Contact Us</a>
</div>
</div>