作者:漂漂雪飘飘业_348 | 来源:互联网 | 2020-09-13 00:57
本文来自CSS入门教程栏目,文中为大家介绍了css实现等高布局的两种方式,具有一定的参考价值,希望可以帮助到大家。实现等高布局有两种方式:一、伪等高;二、真等高。
什么是等高布局?
指在同一个父容器中,子元素高度相等的布局。
从等高布局实现方式来说分为两类:
1、伪等高
子元素高度差依然存在,只是视觉上给人感觉就是等高。
2、真等高
子元素高度相等。
伪等高实现方式:
通过负margin和Padding实现
真等高实现方式:
1、table
2、absoult
3、flex
4、grid
5、js
(推荐教程:CSS入门教程)
伪等高之-负margin和padding
主要利用负margin来实现,如下:
我是中间部分的内容
我是中间部分的内容
我是中间部分的内容
我是中间部分的内容
11111111111
.parent{
position: relative;
overflow:hidden;
color: #efefef;
}
.center,
.left,
.right {
box-sizing: border-box;
float: left;
}
.center {
background-color: #2ECC71;
width: 60%;
}
.left {
width: 20%;
background-color: #1ABC9C;
}
.right {
width: 20%;
background-color: #3498DB;
}
.left,
.right,
.center {
margin-bottom: -99999px;
padding-bottom: 99999px;
}
真实等高之 - table布局
我是中间部分的内容
我是中间部分的内容
我是中间部分的内容
我是中间部分的内容
11111111111
.parent{
position: relative;
display: table;
color: #efefef;
}
.center,
.left,
.right {
box-sizing: border-box;
display: table-cell
}
.center {
background-color: #2ECC71;
width: 60%;
}
.left {
width: 20%;
background-color: #1ABC9C;
}
.right {
width: 20%;
background-color: #3498DB;
}
真实等高之 - absolute
我是中间部分的内容
我是中间部分的内容
我是中间部分的内容
我是中间部分的内容
.parent{
position: absolute;
color: #efefef;
width:100%;
height: 200px;
}
.left,
.right,
.center {
position: absolute;
box-sizing: border-box;
top:0;
bottom:0;
}
.center {
background-color: #2ECC71;
left: 200px;
right: 300px;
}
.left {
width: 200px;
background-color: #1ABC9C;
}
.right {
right:0;
width: 300px;
background-color: #3498DB;
}
真实等高之 - flex
.parent{
display: flex;
color: #efefef;
width:100%;
height: 200px;
}
.left,
.right,
.center {
box-sizing: border-box;
flex: 1;
}
.center {
background-color: #2ECC71;
}
.left {
background-color: #1ABC9C;
}
.right {
background-color: #3498DB;
}
我是中间部分的内容
我是中间部分的内容
我是中间部分的内容
我是中间部分的内容
真实等高之 - grid
.parent{
display: grid;
color: #efefef;
width:100%;
height: 200px;
grid-template-columns: 1fr 1fr 1fr;
}
.left,
.right,
.center {
box-sizing: border-box;
}
.center {
background-color: #2ECC71;
}
.left {
background-color: #1ABC9C;
}
.right {
background-color: #3498DB;
}
我是中间部分的内容
我是中间部分的内容
我是中间部分的内容
我是中间部分的内容
真实等高之 - js
获取所有元素中最高列,然后再去比对再进行修改
我是中间部分的内容
我是中间部分的内容
我是中间部分的内容
我是中间部分的内容
.parent{
overflow: auto;
color: #efefef;
}
.left,
.right,
.center {
float: left;
}
.center {
width: 60%;
background-color: #2ECC71;
}
.left {
width: 20%;
background-color: #1ABC9C;
}
.right {
width: 20%;
background-color: #3498DB;
}
// 获取最高元素的高度
var nodeList = document.querySelectorAll(".parent > div");
var arr = [].slice.call(nodeList,0);
var maxHeight = arr.map(function(item){
return item.offsetHeight
}).sort(function(a, b){
return a - b;
}).pop();
arr.map(function(item){
if(item.offsetHeight 如图:
相关视频教程推荐:css视频教程
以上就是css实现等高布局有哪些方式的详细内容,更多请关注 第一PHP社区 其它相关文章!