小编典典

在CSS中包装长文本

css

我有类似的文字

<div style="float:left; width: 250px"> PellentesquePellentesquePellentesquePellentesquePellentesquePellentesquePellentesquePellentesquePellentesquePellentesquePellentesquePellentesquePellentesquePellentesquePellentesque  feugiat tempor elit. 
Ut mollis lacinia quam. Sed pharetra, augue aliquam   ornare vestibulum, metus massalaoreet tellus, eget iaculis lacus ipsum et diam. </div>

我不想水平滚动。是否可以换行(自动换行)。我知道有一些IE特定属性。

感谢您的时间。

更新:我也可以使用jQuery,Javascript,PHP来做到这一点。但是如何?我的意思是字母(字体)不是固定宽度或您所说的那样。


阅读 284

收藏
2020-05-16

共1个答案

小编典典

我使用组合

word-wrap: break-word;
overflow: hidden;

处理这个。该word- wrap设置将允许在支持该属性的浏览器中将单词包装起来,而不管其长度,而该overflow设置将导致该单词在不识别的浏览器中可用空间的末尾被切断word- wrap。这与不使用javascript可能获得的降级效果一样好。

2020-05-16