前端之家收集整理的这篇文章主要介绍了
html – 打破长行句的方法,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在为我的网站开发一个iPhone
主题,你能否打破这样的长句:
A long sentence would go past the iPhone screen and I need this to break
进入这个:
A long sentence would go past the iPhone
screen and I need this to break
显示如下:
http://uimgz.com/i/M8U5X5f2d1.png
如果您的文本有空格,则为wrap元素
添加宽度将
自动中断文本.但是如果你有一个没有空格的文本(例如
链接),你可以使用break-word:
.your-selector {
word-wrap: break-word;
}
原文链接:https://www.f2er.com/html/226575.html