I've been trying to get my logo on the left side and some nav buttons on the right side, but the logo just refuses to budge.
<div class="flex-container">
<div><img onclick="location.href='index.html'" src="arvax_logo.png" class = "logo"/></div>
<div><input type="button" onclick="location.href='about.html';" value="About" /></div>
<div><input type="button" onclick="location.href='faq.html';" value="FAQ" /></div>
<div><input type="button" onclick="location.href='resources.html';" value="Resources" /></div>
</div>
.flex-container {
display: flex;
align-items: unset;
width: 100%;
justify-content: flex-end;
}
.logo{
height: 60.5px;
width: 272px;
justify-self: flex-start;
margin-right: auto;
}
I read here that this was the way to do it, but I keep getting: