CSS/HTML Help Again, How do I prevent text from scrolling?

  • Thread starter Thread starter PockySticks
  • Start date Start date
P

PockySticks

Guest
I don't know which I should use for this: CSS or HTML. I wanted to prevent text from scrolling along with the entire page (A.K.A. make it fixed), I had already succeeded with doing this with a background picture in CSS, but, I don't know to do it with text.
 
Wow I'll mark this questions interesting.
Put the text in a div and then in css...
#fixedtxt {
position: fixed;
}
 
Back
Top