MVC中的DropDownList无法在IE8中运行

时间:2014-09-02 10:28:12

标签: css asp.net asp.net-mvc asp.net-mvc-4 internet-explorer-8

在我的代码中.cshtml

<span class="float-left">
@Html.DropDownList("searchOption", actions, "--Select Category--")
</span>

在Css文件中

.float-left {

    float: left;
}

它在IE9中工作正常

enter image description here

IE8中的

文字不正确

enter image description here

可以任何人说出我需要为此做什么

1 个答案:

答案 0 :(得分:0)

在你的左右浮动&#39;加上这个,

.float-left {
position:relative;
z-index:1000;
   float: left;
}