html中设置文本自动换行

分类:Web前端 创建时间:2025年2月6日 15:34 更新时间:2025年2月13日 19:51

假如需要换行的文本内容设置了样式类content

 .content{

    white-space: normal; /* 允许换行 */

    word-break: break-word; /* 在长单词或URL上换行 */

}

添加以上两行css,即可实现文本自动换行