我是前端开发人员,我的同事在IE9中遇到问题。几个选择字段的默认文本无法正确显示(请参阅屏幕截图链接)。问题是她是唯一一个(到目前为止)遇到这个问题的人。
http://i.imgur.com/7YMuFKz.jpg
SELECT语句的代码+ CSS:
<div class="formRow">
<label>
Ingeschreven:
<Label>
<asp:DropDownList runat="server" ID="RequiredCourseStatusIsRegisteredDropDownList">
<asp:ListItem Text="<%$ Resources: CommonStrings, DefaultSelectOptionText %>" Value="-1"></asp:ListItem>
<asp:ListItem Text="<%$ Resources: CommonStrings, Yes %>" Value="true"></asp:ListItem>
<asp:ListItem Text="<%$ Resources: CommonStrings, No %>" Value="false"></asp:ListItem>
</asp:DropDownList>
select
{
float: left;
width: 203px; /* with (including borders, padding and margin) is a multiple of 75px column with */
margin: 0 5px 0 5px;
border: 1px solid #e6deca;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px 4px;
height: 20px;
}
label {
float: left;
margin-right: 5px;
text-align: right;
width: 220px;
}
.formRow
{
background: #f3efe5;
margin-bottom: 2px;
overflow: hidden;
padding: 4px 0;
}