作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试了很多东西,也许没有 JavaScript 就不可能。我想要的是以下内容。考虑两个元素(例如,包裹在 <span>
标签中的句子):
This is the first item in the list of sentences.
This is the second item.
This is the first item in the list of sentences, which is really long
and therefore wraps. This is the second item.
white-space: nowrap;
到第二项,它有效,但前提是第一项足够长。如果第一项太短,它看起来像
This is the first item. This is the second item.
最佳答案
如果允许您对父容器设置一些限制,这可能是一个解决方案:
<div>
<p>This is the first item. This is the second item. </p>
</div>
<div>
<p>This is the first item in the list of sentences, which is really long
and therefore wraps. This is the second item. </p>
</div>
div {
max-width: 350px;
}
这是一个
example
关于css - 使用 CSS 强制元素位于第二行,但如果第一项太长,则通过换行文本缩进,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30960664/
我是一名优秀的程序员,十分优秀!