CSS文本溢出:省略号;不适用于IE中的html.listbox

时间:2015-05-07 07:26:54

标签: c# .net listbox ellipsis

我的HTML代码是:

@Html.ListBoxFor(m => m.AvailableOrchestration, new SelectList(Model.AvailableOrchestrations, "Value", "Value", "- select -"), new
                             {
                                 @class = "listbox_100per textOverflow",
                                 @tabindex = "3",
                                 @id = "AvailableOrchestrations"
                             })

和“textOverflow”的css类

    .textOverflow {
    overflow: hidden;  white-space: nowrap; text-overflow: ellipsis;
}

同样适用于Chrome和FireFox。

0 个答案:

没有答案
相关问题