gpt4 book ai didi

html - 一行3个DIV

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

我需要三个 <div>一行中的元素。

例子:

<div class="row">

<div class="left">
<!-- width 100% , float:left -->
</div>

<div class="center">
<!-- width 960px , margin:0 auto -->

<div class="sidebar">
<!-- width 350px , float:right -->
</div>

</div>

<div class="right">
<!-- width 100% , float:right -->
</div>

</div>

示例图片: enter image description here

我想为 div.right 设置相同的背景作为div.sidebar .

最佳答案

CSS文件

 .main{ background-color: #ddd;}
.left {

display: table-cell;
}
.middle {

display: table-cell;
width:100%;
}
.right {

display: table-cell;
}

html代码

<div class="main">
<div class="left"> Some content </div>
<div class="middle"> This should fill the space left </div>
<div class="right"> Some other content </div>
</div>

关于html - 一行3个DIV,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21203941/

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