我有一个下拉菜单
<select name="cmb" class="txtRed" id="cmb1">
options
</select>
在 style.css 我有类 txtRed 作为
.txtRed {
border-bottom : red 2px solid;
border-top : red 2px solid;
border-left : red 2px solid;
border-right : red 2px solid;
}
它适用于Mozilla Firefox和Google Chrome。它只有 IE 8 有问题。什么是解决方案?我可以使用任何其他附加属性或技巧吗?
输出应如下图所示
我尝试了以下虚拟代码,它也不适用于 IE8,我检查了兼容性模式,它仅适用于 IE 8
<html>
<head>
<style type="text/css">
.txtRed {
border-bottom : red 2px solid;
border-top : red 2px solid;
border-left : red 2px solid;
border-right : red 2px solid;
}
</style>
</head>
<body>
<select name="cmb" class="txtRed" id="cmb1" style="border-bottom:red 2px solid;">
<option> Option 1 </option>
<option> Option 2 </option>
</select>
</body>
</html>