美文网首页
水平垂直居中的盒子

水平垂直居中的盒子

作者: _踮起脚尖看世界 | 来源:发表于2022-01-14 10:46 被阅读0次

    应用场景:

    1.弹框水平垂直居中

    2.标题文字水平垂直居中于banner图中

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
        <style>
            .box{
                height: 200px;
                background-color: #ddd;
                text-align: center;
            }
            .inner_box{
                display: inline-block;
                width: 90%;
                height: 50px;
                background-color: #f00;
                vertical-align: middle;
            }
            .box:after{
                content: '';
                display: inline-block;
                height: 100%;
                vertical-align: middle;
            }
        </style>
    </head>
    <body>
        <div class="box">
            <div class="inner_box"></div>
        </div>
    </body>
    </html>
    

    实现效果

    1642128070(1).jpg

    相关文章

      网友评论

          本文标题:水平垂直居中的盒子

          本文链接:https://www.haomeiwen.com/subject/airacrtx.html