长行句的断句方法

发布于 2024-10-14 19:53:57 字数 381 浏览 1 评论 0原文

我正在为我的网站开发一个 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

I'm developing an iPhone theme for my website, can you be able to break a long sentence something like this:

A long sentence would go past the iPhone screen and I need this to break

Into this:

A long sentence would go past the iPhone
screen and I need this to break

Showing like this:

http://uimgz.com/i/M8U5X5f2d1.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦归所梦 2024-10-21 19:53:57

如果您的文本有空格,则为换行元素添加宽度将自动破坏文本。但如果您的文本没有空格(例如链接),您可以使用 break-word

.your-selector {
  word-wrap: break-word;
}

if your text has spaces then adding a width for the wrap element will break the text automatically. But if you have a text without a space (such as a link) you can use break-word:

.your-selector {
  word-wrap: break-word;
}
情栀口红 2024-10-21 19:53:57

根据: https://developer.mozilla.org/en-US/docs /Web/CSS/white-space#Browser_compatibility

pre {
  word-wrap: break-word;      /* IE 5.5-7 */
  white-space: -moz-pre-wrap; /* Firefox 1.0-2.0 */
  white-space: pre-wrap;      /* current browsers */
}

word-wrap 似乎不再起作用,请改用 white-space

As per: https://developer.mozilla.org/en-US/docs/Web/CSS/white-space#Browser_compatibility

pre {
  word-wrap: break-word;      /* IE 5.5-7 */
  white-space: -moz-pre-wrap; /* Firefox 1.0-2.0 */
  white-space: pre-wrap;      /* current browsers */
}

word-wrap doesn't seem to work any more, use white-space instead

天生の放荡 2024-10-21 19:53:57

我认为问题在于“视口”比设备的屏幕更宽。请参阅这篇文章了解一些背景信息以及可能的解决方案。

I think the problem is that the "viewport" is wider than the device's screen. See this post for some background and possible solution.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文