Internet Explorer - проблема с плавающей точкой и фоном - PullRequest
0 голосов
/ 30 мая 2011

У меня проблема (среди многих :) с 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 <текст «Продукт» не выводится </p>

1 Ответ

0 голосов
/ 27 июня 2011

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

#editor_cont div {
    zoom: 1;
}
...