三列布局

Posted web-kongdp

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了三列布局相关的知识,希望对你有一定的参考价值。

左右固定宽度,中间自适应。

技术分享图片

//思路float
.float .left{
	float: left;
	width: 200px;
}
.float .right{
	float: right;
	width: 200px;
}

.float .center{
	margin: 0 200px;
}

  

技术分享图片

//思路absolute
.absolute{
	position: relative;
}

.absolute .left{
	position: absolute;
	left: 0;
	width:200px;
}

.absolute .right{
	position: absolute;
	right: 0;
	width: 200px;
}

.absolute .center{
	position: absolute;
	left: 200px;
	right:200px;
}

  

技术分享图片

//思路table
.table{
	display: table;
	width: 100%;
}

.table .left{
	display: table-cell;
	width: 200px;
}

.table .right{
	display: table-cell;
	width: 200px;
}

.table .center{
	display: table-cell;
}

  

技术分享图片

//思路flex
.flex{
	display: flex;
}

.flex .left{
	width: 200px;
}

.flex .right{
	width: 200px;
}

.flex .center{
	flex: 1
}

  

技术分享图片

//思路栅格grid
.grid{
	display: grid;
	width: 100%;
	grid-template-columns: 200px auto 200px;
}

  

技术分享图片

//思路inline-block calc
.inline{
	font-size: 0;
}
		
.inline .left,.inline .right , .inline .center{
	display: inline-block;
	font-size: 18px;
}

.inline .left {
	width: 200px;
}

.inline .right {
	width: 200px;
}

.inline .center {
	width: calc(100vw - 434px);
}

  

以上是关于三列布局的主要内容,如果未能解决你的问题,请参考以下文章

经典三列布局

三列布局(圣杯双飞翼)

三列布局

使用 flexbox 的 3 列流体布局 第三列向左推

css实现三列布局,左右固定值,中间自适应。

简单的CSS网页布局--三列布局