如何在MVC视图的下拉列表中包装选项

时间:2015-07-01 14:59:07

标签: html css model-view-controller html.dropdownlistfor

如何为MVC中的dropdownlist中的选项进行自动换行。 我试过css如下

select.business {
  text-indent: 0.01px!important;
  text-overflow: 'ellipsis'!important;
  overflow: hidden!important;
  overflow-x: hidden!important;
}
 option.business{
  -moz-appearance: none;
  width: 250px !important;
  word-wrap:break-word !important;
  word-break: break-all!important;
  white-space: pre-wrap!important;
  overflow-x: hidden!important;
  max-width: 200px!important;
}

但是,Option上的样式仍无效。

0 个答案:

没有答案