gpt4 book ai didi

HTML表格单元格如何设置宽度

转载 作者:太空宇宙 更新时间:2023-11-04 02:23:43 24 4
gpt4 key购买 nike

如何通过 display: table-cell 强制元素的宽度?

<div id="wraper">
<div id="left">
<p>Left</p>
</div>
<div id="right">
<p>Right and Hide</p>
</div>
</div>

我的 CSS 没有做任何事情,#left 和 #righ 元素的宽度没有受到影响。

#wraper {
display: table-wrap;
}
#left {
border: 1px solid red;
display: table-cell;
width: 30%;
}
#right {
border: 1px solid blue;
display: table-cell;
width 70%;
}

最佳答案

它对我来说很好用JS fiddle :https://jsfiddle.net/qq0t46pt/1/

HTML:

<div id="wraper">
<div id="left">
<p>Left</p>
</div>
<div id="right">
<p>Right and Hide</p>
</div>
</div>

CSS:

#wraper {
display: table-wrap;
}
#left {
border: 1px solid red;
display: table-cell;
width: 30%;
}
#right {
border: 1px solid blue;
display: table-cell;
width 70%;
}

关于HTML表格单元格如何设置宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37684480/

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