0

这是代码

select
{
 font-size: 9px; 
 color: Blue; 
 font-weight: bold;
 height: 30px;
}

是否有任何原因它不适用于 IE9。

感谢您的帮助。

4

2 回答 2

1

取决于您执行此操作的 html 元素类型,但添加 display:block ;给它。这将为 IE 解决问题

于 2012-09-12T20:16:25.170 回答
0

理查德,当您测试自己的代码时,渲染模式是否存在怪癖?我测试了您的代码,我添加的唯一内容是 doctype 和 html 标签,如下例所示:

<!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">
    <head>
    <style type="text/css">
        SELECT {
        font-size: 9px; 
        color: Blue; 
        font-weight: bold;
        height: 30px;
    }
    </style>
</head>
<body>
    <select name="">
            <option>Test data 1</option>
     </select>
</body>
</html>
于 2012-09-14T10:00:49.560 回答