系统加密css里本来有text-overflow:ellipsis;white-space:nowrap;_百度...
发布网友
发布时间:2024-10-23 05:42
我来回答
共2个回答
热心网友
时间:2024-11-09 13:17
text-overflow:hidden;
word-break:break-all或者word-wrap:break-word
1,word-break:break-all 例如div宽200px,它的内容就会到200px自动换行,如果该行末端有个英文单词很长(congratulation等),它会把单词截断,变成该行末端为conra(congratulation的前端部分),下一行为tulation(conguatulation)的后端部分了。
2,word-wrap:break-word 例子与上面一样,但区别就是它会把congratulation整个单词看成一个整体,如果该行末端宽度不够显示整个单词,它会自动把整个单词放到下一行,而不会把单词截断掉的。
热心网友
时间:2024-11-09 13:21
div{
word-wrap: break-word;
word-break: normal;
}