HTML scroll down code

  • Thread starter Thread starter JoJo
  • Start date Start date
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.
 
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>
 
Back
Top