Using flexbox I'm trying to create a fixed header that includes only two elements and these elements are as far away from each other as possible. I cannot seem to get this to work with justify-content: space-between
.
I expected this CSS code to work but the elements are just sitting next to each other.
header {
width: 100%;
position: fixed;
display: flex;
align-content: space-between;
}
<header>
<a>
LOGO
</a>
<a>
MENU
</a>
</header>