gpt4 book ai didi

css - 2个分区中的分区。一种带 %width,一种带 auto

转载 作者:行者123 更新时间:2023-11-28 11:52:22 24 4
gpt4 key购买 nike

<div id="one"> 
<div id="two">
content
</div>
<div id="three">
content2
</div>
</div>

我有 3 个 div。两个div合二为一

#one { max-width:1000px; }
#two { width:80%; }
#three { min-width:20%; }

我想改变属性display:none;在 #two 的 wordpress(widget) 中动态地然后 #three 应该有宽度 100%。

如何制作?

最佳答案

最简单的解决方案可能是使用 css 表格布局。只需根据需要更改 #two 的宽度即可。当你设置#two的display属性为display:none时,#three会根据需要自动变为100%。

#one {
display:table;
max-width:1000px;
width:100%;
}
#two {
display:table-cell;
width:80%;
}
#three {
display:table-cell;
}

Demo JSFiddle

关于css - 2个分区中的分区。一种带 %width,一种带 auto,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20262284/

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