Page is a not externally linkable
- Code, Content, and Presentation
-- CSS
---- How to hide from displaying content in correct way?


le_gber - 3:49 pm on Jan 8, 2009 (gmt 0)


everything that is included between <div id="skip"> and </div> will be hidden.

If you want to hide different divs, or different section of a page use a class instead (class="skip" and .skip{ display:none; }.

If it's content you want to display at some point or people to read, use negative positioning rather than display none as the latter would be ignored by screen readers.

#skip { position:absolute; left:-999em; }


Thread source:: http://www.webmasterworld.com/css/3821863.htm
Brought to you by WebmasterWorld: http://www.webmasterworld.com