前端面试题HTML+CSS基础篇——垂直水平居中

盒子垂直水平居中

1. margin:auto

父元素宽高固定,子绝父相,父元素相对定位,子元素绝对定位

.father{
    height: 200px;
	width: 200px;
	position: relative;
}
.son{
	position: absolute;
	width: 80px;
	height: 80px;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}

2. 子绝父相,已知宽高的情况下

.father{
    height: 200px;
	width: 200px;
	position: relative;
}
.son{
	position: absolute;
	width: 80px;
	height: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
}

3. css3属性transform

.father{
    height: 200px;
	width: 200px;
	position: relative;
}
.son{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}

这种方式,相对于第二种来说,优势在于不需要已知子元素的宽高

4. flex布局

.father{
    height: 200px;
	width: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
}

不需要知道宽高,推荐使用这种方式,十分简便,所有浏览器都兼容

5. table布局

.father{
    height: 200px;
	width: 200px;
	display: table;
}
.son{
	display: table-cell;
	text-align: center;
	line-height: 200px;
}

这几种水平垂直居中的方法在面试过程中都有考察,是前端一个最最最基本的内容!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值