OZONE Asylum
Forums
XML - XSL - XSLT - XHTML - CSS - DOM
Vanishing element
This page's ID:
25653
Search
QuickChanges
Forums
FAQ
Archives
Register
Edit Post
Who can edit a post?
The poster and administrators may edit a post. The poster can only edit it for a short while after the initial post.
Your User Name:
Your Password:
Login Options:
Remember Me On This Computer
Your Text:
Insert Slimies »
Insert UBB Code »
Close
Last Tag
|
All Tags
UBB Help
I finally found a solution to this problem: [code] <div id="container"> <div id="menu">stuff</div> <div id="content">more stuff</div> </div> where #menu { position: absolute; ...} #content { float: left; ...} [/code] Causes #menu to disappear when the page is refreshed in IE with a horizontal scroll bar showing. Adding an empty clearing <div> between #menu and #contet will fix this. [code] <div id="container"> <div id="menu">stuff</div> <div id="clearer><!-- --></div> <div id="content">more stuff</div> </div> where #menu { position: absolute; ...} #content { float: left; ...} #clearer { clear: both; height: 0; } [/code] . -- not necessarily stoned... just beautiful. [url=http://www.hyperbole-software.com/] [img]http://www.hyperbole-software.com/ozone/hyperbole-88x33.gif[/img] [/url]
Loading...
Options:
Enable Slimies
Enable Linkwords
« Backwards
—
Onwards »