IE6 SELECT HTML tag causes rest of page to vanish
Posted
by Jonas Byström
on Stack Overflow
See other posts from Stack Overflow
or by Jonas Byström
Published on 2010-05-31T13:27:40Z
Indexed on
2010/05/31
13:33 UTC
Read the original article
Hit count: 275
The following HTML does not work in IE6 for me:
<html><body>This text is visible.<textarea>This too.</textarea>
This is not visible.
<select><option value="a">A</option><option value="b">B</option></select>
Neither is this.
<textarea>Nor this.</textarea>
Nor this.
</body></html>
In IE6, every time I put a select
drop-down in the code, everything thereafter dissappears (and some before too, as you can see). All texts are visible in both IE8 and Firefox. Is this a known bug on IE6? Could it have something to do with Windows 7? Or could it be my installation of Internet Explorer Collection 1.6.0.6 that is flawed?
© Stack Overflow or respective owner