user16620643
user16620643

Reputation:

How to make a hyperlink jump to a specified place on the same page?

Can someone please tell me how to make a hyperlink jump to a specified place on the same page.”

Eg. The reader clicks a link and is taken to the bottom of the same page.

Upvotes: 0

Views: 62

Answers (1)

Spectric
Spectric

Reputation: 31992

You can make the link jump to the element with a hash:

#bottom{
  margin-top:1000px;
}
<a href="#bottom">jump to bottom</a>
<div id="bottom">bottom</div>

Upvotes: 1

Related Questions