Internet Explorer — проблема с плавающей точкой и фоном

#internet-explorer #xhtml #css-float

#internet-explorer #xhtml #css-float

Вопрос:

У меня возникла проблема (среди многих других 🙂 с IE.

Вот мой пример, там мы должны увидеть текст «Продукт»:

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <style type="text/css">
#editor_cont {
  background-color: #eee;
}
.product_list {
  float: right;
}
  </style>
</head>
<body>
<div id="editor_cont">
  <div>Product</div>
  <select class="product_list">
    <option value=""></option>
  </select>
</div>
</body>
</html>
  

В IE9< текст «Product» не отображается

Ответ №1:

Вы можете обойти эту проблему, добавив масштабирование: 1 к div, содержащему текст «Продукт».

 #editor_cont div {
    zoom: 1;
}