在我的代码中.cshtml
<span class="float-left">
@Html.DropDownList("searchOption", actions, "--Select Category--")
</span>
在Css文件中
.float-left {
float: left;
}
它在IE9中工作正常
IE8中的
文字不正确
可以任何人说出我需要为此做什么
答案 0 :(得分:0)
在你的左右浮动&#39;加上这个,
.float-left {
position:relative;
z-index:1000;
float: left;
}