【水平居中、垂直居中】内联元素、块级元素水平居中、垂直居中方法大全。初学者教程

目录

水平居中

inline元素:

block元素:

 position元素:

垂直居中

inline元素:

 position元素:


水平居中

inline元素:

text-align: center;

<style>
        .wrapper {
            width: 200px;
            height: 200px;
            background-color: blue;
            /*text-align: center;*/
        }
        .box {
            background-color: aqua;
        }
</style>

<body>
    <div class="wrapper">
        <span class="box">inline元素</span>
    </div>
</body>

block元素:

margin: 0 auto;

<style>
        .wrapper {
            width: 200px;
            height: 200px;
            background-color: blue;
        }
        .box {
            width: 100px;
            /* margin: 0 auto; */
            background-color: aqua;
        }
</style>

<body>
    <div class="wrapper">
        <div class="box">block元素</div>
    </div>
</body>

 position元素

left: 50%;  margin-left: -50px; left: 50%;   transform: translateX(-50%);有兼容性问题

<style>
        .wrapper {
            position: relative;
            width: 200px;
            height: 200px;
            background-color: blue;
        }
        .box {
            position: absolute;
            width: 100px;
            left: 50%; //父元素的一半
            margin-left: -50px;//自身的一半
            background-color: aqua;
        }
 </style>

<body>
    <div class="wrapper">
        <div class="box">position元素</div>
    </div>
</body>

垂直居中

inline元素:

父元素加line-height值=height

<style>
        .wrapper {
            width: 200px;
            height: 200px;
            background-color: blue;
            line-height: 200px;
        }
        .box {
            background-color: aqua;
        }
</style>

<body>
    <div class="wrapper">
        <span class="box">inline元素</span>
    </div>
</body>

 position元素

  1. top: 50%;  margin-top: -50px;
  2. top: 50%;   transform: translateY(-50%);有兼容性问题
  3. top:0; bottom:0; margin:auto 0;
<style>
        .wrapper {
            position: relative;
            width: 200px;
            height: 200px;
            background-color: blue;
        }
        .box {
            position: absolute;
            width: 100px;
            height: 100px; // 注意要加个高度
            top: 0;
            bottom: 0;
            margin: auto 0;
            background-color: aqua;
        }
</style>

<body>
    <div class="wrapper">
        <div class="box">position元素</div>
    </div>
</body>

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值