css实现盒子水平垂直居中的方法

1 篇文章 0 订阅

效果图

在这里插入图片描述

html部分:

<div>
		<img src="./img/1.png">
</div>

css部分:

  • 给子元素(要水平垂直居中的元素)设置margin: auto 方法
div{
width: 400px;
height: 400px;
position: relative;
border: 3px solid #465468;
}
img{
position: absolute;
margin: auto;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
  • 给父元素设置弹性布局display: flex;方法
div{
width: 400px;
height: 400px;
border: 3px solid #465468;
/* display: -webkit-flex;兼容Webkit内核的浏览器,必须加上-webkit前缀。 *//* Safari */
display: flex;
/* -webkit-align-items: center; */
align-items: center;/* 垂直对齐方式 */
/* -webkit-justify-content: center; */
justify-content: center;/*水平对齐方式*/
}
  • 给子元素设置margin-top、margin-left方法
div{
width: 400px;
height: 400px;
border: 3px solid #465468;
position: relative;
}
img{
width: 200px;
height: 200px;
position: absolute;
top: 50%;
left: 50%;
margin-top: -100px;
margin-left: -100px;
}
  • 给子元素设置transform方法
div{
width: 400px;
height: 400px;
border: 3px solid #465468;
position: relative; 
}
img{
width: 200px;
height: 200px; 
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
} 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值