https://heidi37.github.io/dev-playground/days/4/4.html
Today I added top navigation that links to anchors within the page. I was having a little trouble with the links as they were jumping to the correct content but the content was falling behind my header.
I found this stackoverflow that helped tremendously.
The bottom line was, use anchor tags, don't link to ids on existing elements. And then put an "anchor" class on those anchor tags with the following CSS applied.
a.anchor {
display: block;
position: relative;
top: -250px;
visibility: hidden;
}
day 4
Top comments (0)