这是代码
select
{
font-size: 9px;
color: Blue;
font-weight: bold;
height: 30px;
}
是否有任何原因它不适用于 IE9。
感谢您的帮助。
这是代码
select
{
font-size: 9px;
color: Blue;
font-weight: bold;
height: 30px;
}
是否有任何原因它不适用于 IE9。
感谢您的帮助。
取决于您执行此操作的 html 元素类型,但添加 display:block ;给它。这将为 IE 解决问题
理查德,当您测试自己的代码时,渲染模式是否存在怪癖?我测试了您的代码,我添加的唯一内容是 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>