是否可以更改 div 的默认行为,以便 overflow:hidden 导致内容从 div 的右侧溢出,而不是从 div 的底部溢出?
问问题
1648 次
2 回答
3
试试white-space:nowrap
。这样内容就不会换行。
div{
overflow:hidden;
white-space:nowrap;
width:100px;
}
于 2012-11-20T16:40:47.173 回答
2
是的。让文本不换行:
<div style="width:100px;height:30px; overflow:hidden; white-space:nowrap;">
Is there away to change the default behavior of a div so that
overflow:hidden causes the content to overflow out the right side
of a div, rather than out of the bottom of the div?
</div>
于 2012-11-20T16:43:00.770 回答