gpt4 book ai didi

html - li span 向左浮动 向右浮动

转载 作者:搜寻专家 更新时间:2023-10-31 22:34:39 26 4
gpt4 key购买 nike

我需要做以下事情:

|text1| lots of text lots of text lots |text3|
lots of text lots of text lots of text lots
of text

结构如下:

<li><span>text1</span><span>text3</span><span>lots of text</span></li>

text3 向右浮动。

问题是我需要在很多文本上设置宽度,因为我需要背景颜色来填充行的整个宽度。如果我将它设置为 float:left,它会下降一行并且与 text1 或 text2 不在同一行。

最佳答案

像这样

jsFiddle

span {
float: left;
display: inline;
}

span.withbg {
width: 200px;
background: red;
}
<ul>
<li>
<span id="left">text1</span>
<span class="withbg">lots of text</span>
<span id="right">text3</span>
</li>
</ul>

关于html - li span 向左浮动 向右浮动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6481840/

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