I have a table centered at the top of the page that I want to remain visible
even when the page scrolls. However, I don't want to be able to see the text
scrolling behind it. How do I fix this? Which position property would I
use?
 ________________

If I'm understanding the problem right, you need a combination.  You need to 
use position: fixed to keep the table from moving. and then you need to specify 
a background color of some sort, so that the text doesn't show through.

something like:

table {
  position: fixed;
  background-color: white;
}

---Tim
______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to