Fri, 2012-02-03 11:31
<html> <head> <style type="text/css"> p { color:red; text-align:center; } </style> </head> <body> <p>Hello World!</p> <p>This paragraph is styled with CSS.</p> </body> </html>
//mod edit: Please read the posting instructions. BBCode added. ~gt
Fri, 2012-02-03 11:33
#1
CSS Display
<html> <head> <style type="text/css"> h1.hidden {visibility:hidden;} </style> </head> <body> <h1>This is a visible heading</h1> <h1 class="hidden">This is a hidden heading</h1> <p>Notice that the hidden heading still takes up space.</p> </body> </html>
//mod edit: See my previous comment. ~gt
Fri, 2012-02-03 15:40
#2
Yep! Have you any actual
Yep! Have you any actual questions?
Fri, 2012-02-03 17:53
#3
When all else fails
Mon, 2012-02-13 07:57
#4
This is nice update for
This is nice update for visibility:hidden.
Thanks