元素的水平垂直居中

元素的水平垂直居中

行内元素
text-align:center;
line-hight:设置和父元素同高

	结构:
		<div class="outer">
			<span class="inner">居中显示</span>
	   </div>
样式:
	<style>
		.outer{
			width: 200px;
			height: 200px;
			background-color: pink;
			color: black;
			text-align: center;
			line-height: 200px;
		}
	</style>

居中显示

块级元素
1.给父元素添加相对定位
给子元素添加绝对定位
子元素left right bottom top 都设置为0 且设置margin auto;

结构:
	<div class="outer">
		<div  class="inner"></div>
	</div>
样式:
	<style>
		.outer{
			width: 200px;
			height: 200px;
			background-color: pink;
			position: relative;
		}
		.inner{
			width: 100px;
			height: 100px;
			background-color: black;
			position: absolute;
			top: 0px;
			left: 0px;
			right: 0px;
			bottom: 0px;
			margin: auto;
		}
	</style>

2.给父元素绝对定位
子元素绝对定位
子元素设置 :left:25%;
top25%;
margin-left:50%减子元素宽一半;
margin-top:50%减子元素高一半;

结构:
	<div class="outer">
		<div  class="inner"></div>
	</div>
样式:
	<style>
		.outer{
			width: 200px;
			height: 200px;
			background-color: pink;
			position: absolute;
		}
		.inner{
			width: 100px;
			height: 100px;
			background-color: black;
			position: absolute;
			top:25%;
			left: 25%;
			margin-top: calc(50%-50px);
			margin-left: calc(50%-50px);
		}
	</style>

3.伸缩盒/弹性盒布局
为父元素设置
display: flex;
justify-content: space-around;
align-items: center;
这样也可以实现子元素在父元素里水平垂直居中

结构:
	<div class="outer">
		<div  class="inner"></div>
	</div>
样式:
	<style>
		.outer{
			width: 200px;
			height: 200px;
			background-color: pink;
			display: flex;
			justify-content:space-around;
			align-items: center;
		}
		.inner{
			width: 100px;
			height: 100px;
			background-color: black;
		}
	</style>

三者的显示结果同为:
垂直居中

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值