Bootstrap 具有很好的水平定义列表样式,但我希望 DT 内容能够换行,而不是被截断。
我知道在他们的base.css 页面上他们说:“注意!水平描述列表将截断太长而无法放入左列修复文本溢出的术语。”
有谁知道解决这个问题?
这是我一直在努力但没有成功的现成引导 CSS:
.dl-horizontal {
*zoom: 1;
}
.dl-horizontal:before,
.dl-horizontal:after {
display: table;
content: "";
line-height: 0;
}
.dl-horizontal:after {
clear: both;
}
.dl-horizontal dt {
float: left;
width: 160px;
clear: left;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
我的问题与这个问题类似,如果有帮助的话: 防止 Twitter 引导空 <dd> 填充下一个 <dd> 值
提前致谢!