如何使跨区文本溢出,如输入

时间:2012-01-07 09:12:56

标签: css overflow

我试图通过跨度来实现这个目标:

enter image description here

这就是我所拥有的:

<span>some text goes here</span>

span{width:50px;overflow:hidden;float:left;}

这给了我这个:

enter image description here

我尝试了一切可能的方式,但是文字不断向下移动。我不想指定高度。

1 个答案:

答案 0 :(得分:18)

使用white-space: nowrap。否则,内容将始终垂直展开框。

Demo