这是代码
select
{
font-size: 9px;
color: Blue;
font-weight: bold;
height: 30px;
}
是否有任何理由不使用IE9。
感谢您的帮助。
答案 0 :(得分:1)
取决于您执行此操作的html元素类型,但添加display:block;它。 这将成为IE的诀窍
答案 1 :(得分: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>