View Single Post
  #2 (permalink)  
Old 01-23-2002, 12:37 PM
chad chad is offline
Registered User
 
Join Date: Jan 2002
Posts: 7
Hi Jack..

The display "none" and " " should work cross-browser. You can also substitute block with "inline" if you don't want to invoke the CSS box model. Of course with regard to elements you can also use
"visibility:visible" or "visibility:hidden" in
your style sheet, or hard coded into the html tag itself. (eg)

<p style="position:absolute;visibility:hidden;"
</p>

here
is the W3c display link..

Good coding!
Reply With Quote