Answers
Jan 16, 2008 - 04:31 AM
Two ways to avoid the hidden div taking up any space:
position: absolute (which takes the element out of flow)
or
display: none (which prevents any rendering of the element)
If you want to change the positioning offset, you should put position: relative on one of the div's parent elements.
Hope this helps,
Jakob
Mar 04, 2009 - 06:05 AM
The Quomon Team
Add New Comment