垂直居中的方法

本文介绍了两种方法将网页元素居中显示:1) 使用CSS的绝对定位,通过设置父级元素相对定位,子元素绝对定位并调整偏移量;2) 利用Flexbox弹性布局,通过`align-items: center`和`justify-content: center`实现内容居中。这两种方法简洁高效,适用于不同场景。
摘要由CSDN通过智能技术生成

​
​
<div class="main">	
   <div class="box1">
			
   </div>
</div>

​

​

1.使用绝对定位

<style>
	html,body{
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;	
	}
			.main{
				/* 给父级增加相对定位 */
				position: relative;
				width: 100%;
				height: 100%;
				background-color: silver;
				
			}
			.box1{
				/* 使用绝对定位实现 */
				position: absolute;
				top: 50%;
				left: 50%;
				transform: translate(-50%,-50%);
				width: 200px;
				height: 200px;
				background-color: aquamarine;
			}
		</style>

效果如下

 

2.使用弹性布局

	.main{
		        display: flex;
				align-items: center;
				justify-content: center;
				width: 100%;
				height: 100%;
				background-color:skyblue;
				
			}
			.box1{
				   width: 300px;
				    height: 300px;
					background-color: aquamarine;
			}

 效果如下

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值