gpt4 book ai didi

css-如何设置一个三个平行的DIV?

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

如何设置三个div这样水平排列?左边一个宽度:150px,右边一个宽度:150px,中间一个宽度是其余像素,中间一个最小宽度为800px。所有的 div 都需要一个 position:relative。谢谢。

最佳答案

开始吧,html如下:

<div id="wrap">

<div class="left"></div>
<div class="center"></div>
<div class="right"></div>

<div class="clearBoth"></div>

</div>

下面是 css:

#wrap {
width: auto;
position: relative;
}

.left, .right {
width: 150px; //or use 30%
float: left;
}

.center {
float: left;
min-width: 800px; //or use 60%
width: auto;
position: relative;
}

.clearBoth {
clear: both;
}

关于css-如何设置一个三个平行的DIV?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4136474/

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