Quote:
Originally Posted by increase
But.. this works in stylesheet
.hidden { visibility: hidden; } 
|
Personally, I'd prefer:
Code:
.hidden {
display : none;
}
Why this choice? Simply, a visibility:hidden; element will still use up space on the page, one hidden by display:none; will not. See
CSS visibility Property for more information.