css换行几种方式
2021-02-08 04:15
阅读:694
标签:bre 单词 hit css nowrap rap white ace class css换行几种方式 标签:bre 单词 hit css nowrap rap white ace class 原文地址:https://www.cnblogs.com/gxywb/p/13083540.html
1. 强制不换行
div{
white-space:nowrap;
}
2. 自动换行
div{
word-wrap: break-word;
word-break: normal;
}
3. 强制英文单词断行
div{
word-break:break-all;
}
评论
亲,登录后才可以留言!