最后禁用自动换行
我有一个块,里面有一些文本和图像。
就像:
<div>I just posted a new photo from my iPhone <img></div>
最终图像的尺寸为 16x16。
问题是,文本各不相同,有时>只是图像<转到新行。它应该总是伴随着一些文字,图像不能单独传播。
我该怎么做?
I have a block with some text and image inside.
Like:
<div>I just posted a new photo from my iPhone <img></div>
Image in the end has dimensions of 16x16.
The problem is, text varies and sometimes >just image< goes to a new line. It should always go with some word, image must not travel alone.
How do I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用不间断空格:
Use a non-breaking space:
您还可以在 CSS 中尝试
white-space: nowrap
。这可以防止段落中出现换行。You could also try
white-space: nowrap
in your CSS. This prevents line wraps in your paragraphs.