gpt4 book ai didi

html - 如何强制元素与上一个元素的最后一个字保持在同一行?

转载 作者:行者123 更新时间:2023-11-28 16:56:59 25 4
gpt4 key购买 nike

这类似于 How can I force two elements to always stay on the same line in a <td> ,但我希望该元素仅与前一个元素的 -last word- 对齐。

例子

<th>
{dynamic text}
<i>{static icon}</i>
</th>

如果有足够的空间,我们会得到:

dynamic text here{icon}

如果没有足够的空间,它会换行:

dynamic text
here{icon}

但它不应该像这样将 {icon} 放在它自己的行上:

some text
here
{icon}

我希望静态图标贴在动态文本的最后一个字上。

最佳答案

你应该使用nowrap。这是 docs . nowrap 让您可以在一行中保留多个单词而不会中断。

看看这个codepen .

CSS:

.nowrap {
white-space: nowrap;
}

HTML:

Some <span class="nowrap">text with</span> extra text.

关于html - 如何强制元素与上一个元素的最后一个字保持在同一行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31928628/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com