cklopez / prj-rev-bwfs-tea-cozy

0 stars 0 forks source link

Navigation #8

Open tommygebru opened 5 years ago

tommygebru commented 5 years ago

Navigation codebase looks pretty great right now, with a few changes we can make it look better:

Add top:0; to your header element

CSS positioning property top, positions elements at a distance from the top of the current parent element, in this case the header will stick to the top of the body element https://developer.mozilla.org/en-US/docs/Web/CSS/top

tommygebru commented 5 years ago

You can also change the default styles of the anchortags, consider replacing these lines

header nav {
    padding-right: 100px;
}

with the following:

header a{
    color: inherit;
    margin: 10px;
}