实现元素水平垂直局中的多种方案

(1)第一类是借助于定位实现元素的局中
1.方式一:

<style>
        .wrap{
            position:absolute;// position:fixed;
            top:0;
            bottom:0;
            left:0;
            right:0;
            margin:auto;
            width:300px;
            height:300px;
            background:greenyellow;
        }
 </style>

<body>
    <div class="wrap"></div>
</body>

2.方式二:

<style>
        .wrap{
            position:absolute;
            top:50%;
            left:50%;
            width:300px;
            height:300px;
            transform: translate(-50%,-50%);
            background:pink;
        }
 </style>
 <body>
    <div class="wrap"></div>
</body>
    

(2)第二类是将元素转换成行内或者行内块状的元素,从而实现元素的局中
1.方式一:

<style>
        .wrap{
            width:800px;
            height:500px;
            margin:auto;
            background:yellow;
            text-align:center;
            display: table-cell;
            vertical-align: middle;
        }
        .inner{
            display:inline-block;
            width:300px;
            height:300px;
            background:purple;
        }
</style>
<body>
    <div class="wrap">
        <div class="inner"></div>
    </div>
</body>

2.方式二

<style>
        .wrap{
            width:800px;
            height:500px;
            margin:auto;
            background:orange;
            text-align:center;
            line-height:500px;
           
        }
        .inner{
            display: inline;
            background:purple;
        }
</style>
<body>
    <div class="wrap">
        <div class="inner">888</div>
    </div>
</body>

3.方式三: 利用vertical-align:middle设置垂直居中(vertial-align生效的前提是该元素为行内或行内块状元素),其次设置父元素的行高为它自身的高度。

<style>
   .wrap{
       background-color: blue;
       width: 100vw;
       height: 100vh;
       line-height: 100vh;
       text-align: center;
       
   }
   .inner{
       background-color: aqua;
       width: 200px;
       height: 200px;
       display: inline-block;
       vertical-align: middle;
   }
</style>

<div class="wrap">
      <div class="inner"></div>
</div>

(3)第三类是借助于flex布局实现元素的局中
1.方式一:

<style>
        .wrap{
            width:800px;
            height:500px;
            margin:auto;
            background:gray;
             display:flex;
             align-items: center;
             justify-content: center;
           
        }
        .inner{
            width:300px;
            height:300px;
            background:purple;
        }
</style>
<body>
    <div class="wrap">
        <div class="inner"></div>
    </div>
</body>

备注:目前想到的主要是这三大类,后续有好的解决方案再补充。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值