HTML div css 强制 换行 不换行
程序员文章站
2022-03-10 09:25:55
...
1、强制不换行,同时以省略号结尾。
<div style="width:100px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" >
你好朋友朋友朋友我为什么不能看到效果啊
</div>
2、css自动换行
div{ word-wrap: break-word; word-break: normal; }
<div style="width:100px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" >
你好朋友朋友朋友我为什么不能看到效果啊
</div>
2、css自动换行
div{ word-wrap: break-word; word-break: normal; }
3、css强制英文单词断行
div{word-break:break-all;}
若是div嵌套,要使内层div根据内容自动换行,则可只设置外层的div宽,和 white-spance:nowrap即可。
word-break:break-all和word-wrap:break-word都是能使其容器如DIV的内容自动换行
它们的区别就在于:
1,word-break:break-all 例如div宽200px,它的内容就会到200px自动换行,如果该行末端有个英文单词很长(congratulation等),它会把单词截断,变成该行末端为conra(congratulation的前端部分),下一行为tulation(conguatulation)的后端部分了。
2,word-wrap:break-word 例子与上面一样,但区别就是它会把congratulation整个单词看成一个整体,如果该行末端宽度不够显示整个单词,它会自动把整个单词放到下一行,而不会把单词截断掉的。
推荐阅读
-
css white-space:nowrap属性用法(可以强制文字不换行输出)
-
css强制换行 css强制不换行的css方法
-
css 不换行 自动换行 强制换行的实现方法
-
css实现强制不换行/自动换行/强制换行
-
HTML div css 强制 换行 不换行
-
html css设置ul li标签中的中文文字自动换行
-
css 文本超出强制换行未生效??
-
white-space: nowrap 与字符串(文本)换行_html/css_WEB-ITnose
-
dl dt dd一行两列并且每一组dl之间自动换行_html/css_WEB-ITnose
-
white-space: nowrap 与字符串(文本)换行_html/css_WEB-ITnose