我的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。