预格式化的 HTML 包含不需要的换行符
我正在尝试使用 pre
元素创建一个预先格式化的文本块,其中内容之间有时会有一些空行。问题在于,文本偶尔会在正斜杠 (/) 或冒号 (:) 之后断为单独的行,
示例如下:
<pre>Lorem ipsum dolor sitat: http://wwww.site.com/foo/bar</pre>
显示为:
Lorem ipsum dolor sitat: http://wwww.site.com/foo
/bar
有谁知道如何解决此问题吗?
I am trying to create a pre-formatted block of text using the pre
element where there are sometimes a few blank lines in between the content. The problem is that occasionally the text breaks onto a separate line after either a forward slash(/) or colon(:)
An example is as follows:
<pre>Lorem ipsum dolor sitat: http://wwww.site.com/foo/bar</pre>
Displays as:
Lorem ipsum dolor sitat: http://wwww.site.com/foo
/bar
Does anyone know how to resolve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我和@Kyle在一起,没有看到页面本身,我认为它对于你所在的容器来说太长了,所以也许可以缩小文本或加宽容器,看看是否有帮助。
我尝试过:
并且没有出现任何换行符。
I'm with @Kyle, without seeing the page itself I think that it is too long for the container that you have it in, so maybe make the text smaller or widen the container and see if that helps.
I tried:
and didn't get any line breaks.