HTML scroll down code

J

JoJo

Hello:

I am creating a link on a web page that is very long. What is the HTML code
that would scroll down the page to a paragraph below ?



Thanks.
 
T

Trevor Lawrence

JoJo said:
Hello:

I am creating a link on a web page that is very long. What is the HTML
code
that would scroll down the page to a paragraph below ?


Do you mean "scroll down to" or "locate to" ?

The scroll bars are there to allow scrolling. To locate, use a named anchor

<a href="#lowerpara">Locate to lower para</a>
....
....
<a name="lowerpara">
<p>The text for this para</p></a>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top