gpt4 book ai didi

html - 跨度中的 CSS 固定宽度

转载 作者:bug小助手 更新时间:2023-10-28 10:54:57 33 4
gpt4 key购买 nike

在无序列表中:

<li><span></span> The lazy dog.</li>
<li><span>AND</span> The lazy cat.</li>
<li><span>OR</span> The active goldfish.</li>

允许添加类或样式属性,但不允许填充文本以及添加或更改标签。

页面正在使用 Courier New 呈现。

目标是让 span 之后的文本排成一行。

    The lazy dog.
AND The lazy cat.
OR The active goldfish.

“OR”的合理性并不重要。

懒惰的动物文本可能包含在一个附加元素中,但我必须仔细检查。

最佳答案

在理想情况下,您只需使用以下 css 即可实现这一目标

<style type="text/css">

span {
display: inline-block;
width: 50px;
}

</style>

这适用于除 FF2 及以下版本之外的所有浏览器。

Firefox 2 and lower don't support this value. You can use -moz-inline-box, but be aware that it's not the same as inline-block, and it may not work as you expect in some situations.

引自 quirksmode

关于html - 跨度中的 CSS 固定宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/257505/

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