我想在列中分发一些链接。我用这个css:
.cols{
float: left;
width: 25%;
white-space: nowrap;
}
HTML:
<div class="CRMP_WP_QUICKADS_cols">
text...
</div>
图像显示结果输出:
如何避免重叠?
答案 0 :(得分:1)
将overflow
设置为hidden
以切断超出列width
的所有内容:
.cols {
/* ... */
overflow:hidden;
text-overflow:ellipsis; /* Hint that some text is hidden */
}
答案 1 :(得分:1)
可能的解决方案:
overflow: hidden; text-overflow:
ellipsis;
答案 2 :(得分:0)
3个选项
overflow: hidden
醇>
答案 3 :(得分:0)
您必须增加列的width
以补偿溢出的文本。