Add a space on top of the HTML page link.

When I have a link that downloads a section on the same page, the link will make the section click on the download at the top of the browser window, I need to somehow add space / space as 100px on top of all those sections that are linked in this way.

Any ideas on how to do this?

The link to section
<a href="#page">Page</a>


The section
<a id="page"></a>

      

+3


source to share


1 answer


In your css, just set the padding-top to 100px (you'll need some kind of CSS selector that will only target the "correct" links):



a.someCssClassOrSelector {
  padding-top: 100px
}

      

+2


source







All Articles