IE8 CSS / combobox error (weird display text)

I am trying to identify this error. Is this a known problem or is it new? Is there a workaround (for example, scaling: 1 or position: relative, which I can add to fix it?), Ideal without changing the html here, but just adding to it.

If you display below html in IE8, you will see text from the combo box that appears twice. One outside the combo box. This ruined the flow of my document (not to mention the weird).

<html><body>
<div style="width: 800px;">
 <div style="float: right" >     
 </div> 
 <div style="display: none">
     ijklmno
 </div>
 <div style="float:left">
  <select>
   <option>abcdef</option>
  </select>
  <div style="float: right">
  </div>
 </div>
</div>
</body></html>
+3
source share
1 answer

, . . div, div , . , , , IE float , , , .

. , , - div (, ), div (display: none) .

Firefox div ( , ), , Firefox .

div , , div.

+3

Source: https://habr.com/ru/post/1720847/


All Articles