Diona Kidd wrote: > Hi all, > > I noticed an issue today with IE6. I have an example created at > http://www.studio12a.com/test.html. > > The situation is as follows. I have a wrapper div around all content > with position: relative. Inside of this, exists a form wrapped in a > table. The form contains a text area with a div wrapped around the > textarea. This div has position: relative associated with it. In this > current setup, the textarea flows out of the expected position in IE6 > only. However, if I add position: relative to the table, everything > is as expected. > > I'd like to understand why this is occurring. Is a different DOM > implementation or table spec implemented in IE6 that was corrected in > IE7 (and doesn't exist in other browsers)? It's as if IE6 ignores the > table as a container element. > > Any thoughts?
The div containing the textarea has position:relative, but no layout. Do not use position:relative on wrappers without haslayout, or you'll probably see these funny rendering effects more often. http://www.satzansatz.de/cssd/onhavinglayout.html Ingo -- http://www.satzansatz.de/css.html ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
