gpt4 book ai didi

css - 3 个 span 排成一排,每个 buy 宽度不同

转载 作者:可可西里 更新时间:2023-11-01 14:53:54 28 4
gpt4 key购买 nike

我试图在一行中包含 3 个跨度。左边的跨度是一个固定的宽度。right span是向右浮动,也是固定宽度。中间跨度是消耗两个跨度之间的空间。这 3 个跨度是从数据库中提取的,因此除了第三个跨度外,每个字段中都会有多行不同的值,第三个跨度将用作删除按钮。我已经尝试了一切让它们排成一行并且到目前为止已经成功通过制作左侧显示:inline-block 和 float:left,右侧:float:right display:inline-block,但中间没有想要扩展以填充两个 span 之间的中间空间,即使在将其更改为 display:block 之后也是如此。

一些帮助将不胜感激!

/*Left Span*/
.word_native{
float: left;
clear: left;
margin-top: 7px;
height:22px;
line-height:22px;
margin-left: 10px;
margin-right: 10px;
}

/*Middle Span*/
.word_foreign{
margin-top: 6px;
height:22px;
height:22px;
line-height:22px;
line-height:22px;
display:inline-block;
}
*/

/*Right Span*/

float: right;
clear: right;
margin-top: 6px;

最佳答案

看起来您正在做的事情非常适合表格,那么为什么不使用 html 表格呢?

<table>
<tr>
<td class="word_native">native</td>
<td class="word_foreign">foreign</td>
<td class="del">del btn</td>
</tr>
<tr>
<td class="word_native">native</td>
<td class="word_foreign">foreign</td>
<td class="del">del btn</td>
</tr>
...
</table>

然后可以通过CSS设置第三列为固定宽度

关于css - 3 个 span 排成一排,每个 buy 宽度不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13723445/

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