On a html page I have a link like:
<a href="/page.htm#something">
The other page (page.htm) looks like:
<h1>header</h1>
<p>some text</p>
<H2 id="something">The header 2</H2>
etc.
When I follow the link to page.htm#something then the header2 is exactly on top of the browser.
My wish is that I get some room abow it, let's say 1em or so.
Of course I can use:
<a name="something"><br /></a>
<H2>The header 2</H2>
But that's so ugly and needs a lot more typing.
Is there a way that this link is somewhat positioned lower in the webbrowser?