I have tried everything and I still can't find a way to fix this "issue".
Here is my navbar:
Basically, I want the "pixelizer.io" to be centered, but the "log-in/register" prevents it from doing so.
If I make the text inside the button smaller, then "pixelizer.io" will be centered:
Here's the HTML:
<nav>
<h1>pixelizer.io</h1>
<button id="join-button">log-in/register</button>
</nav>
CSS (TITLE):
nav>h1 {
width: 100%;
clear: right;
display: inline;
margin: 0 auto;
font-size: 3em;
}
CSS (BUTTON):
#join-button {
float: right;
padding: 7px;
}