gpt4 book ai didi

html - 如何将具有 table-cell 显示属性的 html 元素向右推送?

转载 作者:太空宇宙 更新时间:2023-11-04 03:28:44 25 4
gpt4 key购买 nike

所以这是 fiddle :http://jsfiddle.net/myxgy7xg/3/我想将“.toTheRight”推到行的右侧,固定宽度为 200 像素。同时,中间 '.b' 的元素占据了当前行的所有剩余宽度。

代码如下:HTML:

<div class="a">
haha
</div>

<div class="b">
classb
</div>

<div class="toTheRight">
to the right!!!
</div>

CSS:

.a,.b,.toTheRight{
display:table-cell;
}
.a{
width:200px;
}
.b{
width:30%;}
.c{
width:200px;
}

最佳答案

这是您要找的吗?

http://jsfiddle.net/myxgy7xg/4/

我只是将 min-width 属性设置为 a 和 c

.a,.b,.toTheRight{
display:table-cell;
}
.a{
width:200px;
min-width:200px;
}
.b{
width:70%;}
.c{
width:200px;
min-width:200px;
}

这迫使他们占用整个 200px;

https://developer.mozilla.org/en-US/docs/Web/CSS/min-width

关于html - 如何将具有 table-cell 显示属性的 html 元素向右推送?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26660548/

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