如何用CSS实现左侧宽度固定,右侧自适应(两栏布局)(左右固定中间自适应(三栏布局)呢?)
在前端日常布局中,会经常遇到左侧宽度固定,右侧自适应或者左右两边固定,中间部分自适应的实用场景。本文例子中将列举出两种常用的两栏布局,左侧固定右侧自适应的常用方法以及代码和五种左右固定中间自适应的常用方法以及代码【如何用CSS实现左侧宽度固定,右侧自适应(两栏布局)(左右固定中间自适应(三栏布局)呢?)】具体实现效果展示如下:
文章图片
1.二栏布局-flex弹性布局
flex弹性布局:左边
右边
// flex弹性布局
.box1 {
display: flex;
height: 100px;
background: rgb(241, 210, 210);
padding: 10px;
.left1 {
width: 100px;
height: 100%;
background: yellow;
text-align: center;
line-height: 100px;
}.right1 {
flex: 1;
background: grey;
text-align: center;
line-height: 100px;
}
}
2.二栏布局-左float右margin-left
双栏布局(左float右margin-left):左边
右边
// 双栏布局(左float右margin-left)
.box {
overflow: hidden;
background: rgb(241, 210, 210);
padding: 10px;
.left {
float: left;
width: 200px;
background-color: gray;
height: 100px;
text-align: center;
line-height: 100px;
}.right {
margin-left: 210px;
background-color: lightgray;
height: 100px;
text-align: center;
line-height: 100px;
}
}
3.三栏布局-两边使用 float,中间使用 margin
三栏布局-两边使用 float,中间使用 margin:三栏左侧
三栏右侧
三栏中间
// 三栏布局-两边使用 float,中间使用 margin
.box-float-margin {
background: rgb(241, 210, 210);
overflow: hidden;
padding: 10px;
height: 100px;
.left {
width: 200px;
height: 100px;
float: left;
background: rgb(80, 255, 182);
text-align: center;
line-height: 100px;
}.right {
width: 120px;
height: 100px;
float: right;
background: rgb(173, 130, 130);
text-align: center;
line-height: 100px;
}.center {
margin-left: 220px;
height: 100px;
background: rgb(255, 223, 182);
margin-right: 140px;
text-align: center;
line-height: 100px;
}
}
4.三栏布局-两边使用 absolute,中间使用 margin
三栏布局-两边使用 absolute,中间使用 margin:左边固定宽度
右边固定宽度
中间自适应
// 三栏布局-两边使用 absolute,中间使用 margin
.box-absolute {
position: relative;
background: rgb(241, 210, 210);
padding: 10px;
div {
height: 100px;
text-align: center;
line-height: 100px;
}.left {
position: absolute;
top: 10px;
left: 10px;
width: 100px;
background: rgb(128, 119, 119);
}.right {
position: absolute;
top: 10px;
right: 10px;
width: 100px;
background: rgb(128, 168, 228);
}.center {
margin: 0 110px;
background: rgb(126, 102, 143);
color: rgb(255, 255, 255);
}
}
5.三栏布局-flex弹性布局
三栏布局-flex弹性布局:左边固定宽度
中间自适应
右边固定宽度
// 三栏布局-flex弹性布局
.box-flex-three {
display: flex;
justify-content: space-between;
background: rgb(241, 210, 210);
padding: 10px;
div {
text-align: center;
line-height: 100px;
height: 100px;
}.left {
width: 500px;
background: rgb(165, 163, 162);
}.right {
width: 300px;
background: rgb(209, 123, 226);
}.center {
background: rgb(7, 245, 7);
width: 100%;
margin: 0 10px;
}
}
6.三栏布局-grid布局
三栏布局-grid布局:左侧
中间
右侧
// 三栏布局-grid布局
.box-grid {
display: grid;
width: 100%;
grid-template-columns: 300px auto 250px;
div {
text-align: center;
line-height: 100px;
height: 100px;
}.left {
background: rgb(80, 255, 95);
}.right {
width: 250px;
background: rgb(23, 127, 161);
}.center {
background: rgb(54, 131, 73);
}
}
7.三栏布局-display: table
三栏布局-display: table:左边固定宽度
中间自适应
右边固定宽度
// display: table
.box-table {
height: 100px;
line-height: 100px;
text-align: center;
display: table;
table-layout: fixed;
width: 100%;
.left,
.right {
width: 300px;
background: rgb(228, 20, 183);
display: table-cell;
}.center {
background: rgb(18, 240, 118);
color: white;
width: 100%;
display: table-cell;
}
}
推荐阅读
- Google如何申请客户端ID并调试代码()
- 如何在Vue中使用protobuf
- 教你如何在Pycharm中导入requests模块
- Linux技术|如何创建 Azure AKS 集群()
- js如何操作localstorage
- 聚水潭ERP系统如何集成企微群机器人快速解决电商售后难题()
- 如何在|如何在 Java 中实现无向环和有向环的检测
- 如何科学衡量广告投放效果(HMS|如何科学衡量广告投放效果?HMS Core分析服务助您科学归因)
- React 性能调优记录(下篇),如何写高性能的代码
- SQL|如何实现高性能的数据处理\数据库性能优化