img 实现水平垂直居中

img 元素定义为块元素,并放入弹性盒子容器后,可通过 margin:auto; 样式实现水平和垂直居中,将下面的代码放入body中可以测试效果:

<style>
    div{
        background-color: aquamarine;
        width: 400px;
        height:200px;
        display: flex;  /*定义为弹性盒子容器*/
    }
    img{
        width: 100px;
        height: auto;
        aspect-ratio: 1/1;  /*固定宽高比*/
        display: block;  /*定义为块级元素*/
        margin: auto;
    }
</style>

<div>
    <img src="https://profile.csdnimg.cn/E/1/9/3_ymz641">
</div>

如需水平居中,可以将 margin: auto;替换为:

margin-left:auto;
margin-right:auto;

同样,如需垂直剧中,可以将 margin: auto;替换为:

margin-top:auto;
margin-bottom:auto;
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值