I cant get 2 divs on the same line but one is aligned right.
.container>* {
display: inline-block;
background-color: rgba(0, 0, 0, .85);
}
.menulinks {
font-size: 50px;
padding-top: 0px;
padding-left: 10px;
text-decoration: none;
color: blueviolet;
float: left;
}
.menulinks:hover {
color: coral;
}
<div class="container">
<div>
<img src="assets/logo.png" width="150">
</div>
<div align="right">
<a href="photos.html" class="menulinks">Photos</a>
<a href="about.html" class="menulinks">About</a>
<a href="socials.html" class="menulinks">Socials</a>
</div>
</div>
It was working before when I had tables and stuff but I thought this would be easier. They are on the same line but the links just won't align to the right,