gpt4 book ai didi

html - 具有响应式中央列的 3 列布局

转载 作者:行者123 更新时间:2023-11-28 08:40:58 25 4
gpt4 key购买 nike

我正在尝试构建响应式三列布局。但是,我希望外列的宽度固定,并且我希望中央列占据所有剩余空间。

因此,如果屏幕宽度为 900 像素,而我的外部列分别为 200 像素和 300 像素,则中间列将占用剩余的 400 像素。

到目前为止我有

.column-left,
.column-main,
.column-right {
display: inline-block;
vertical-align: top;
height: 100%;
}
.column-left {
width: 200px;
}
.column-main {
width: 100%;
}
.column-right {
width: 300px;
float: right;
}

但这会将中间列向下推到下一行,第三列也将向下推到另一行。

最佳答案

选项 1:表格布局

为什么不使用 CSS 表格布局?注意。这在这里作为布局是有效的,而不是用于数据内容的语义 table 元素。

html,
body,
.table {
height: 100%;
width: 100%;
margin: 0;
}
.table {
display: table;
table-layout: fixed;
}
.cell {
display: table-cell;
background:lightgrey;
}
.cell:first-child,
.cell:last-child {
width: 200px;
background: grey;
}
<div class="table">
<div class="cell"></div>

<div class="cell"></div>

<div class="cell"></div>

</div>

选项 2:定位布局

或者,您可以定位您的元素...

html,
body,
div {
height: 100%;
width: 100%;
margin: 0;
}
div {
position: absolute;
top: 0;
left: 200px;
bottom: 0;
right: 200px;
width: calc(100% - 400px);
background:lightgrey;
}
div:first-of-type,
div:last-of-type {
background: grey;
width: 200px;
position: absolute;
}
div:first-of-type {
left: 0;
right: auto;
}
div:last-of-type {
left: auto;
right: 0;
}
<div></div>
<div></div>
<div></div>

关于html - 具有响应式中央列的 3 列布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27815647/

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