美文网首页我爱编程
HTML定位居中,居中技巧

HTML定位居中,居中技巧

作者: a564c12b3104 | 来源:发表于2018-04-17 09:22 被阅读23次

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
    .zhong{
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -200px;
    margin-top: -100px;
    width: 400px;
    height: 200px;
    border: solid red 1px;
    text-align: center;
    line-height: 200px;
    }
    </style>
    </head>
    <body>
    <div class="zhong">定位居中</div>
    </body>
    </html>

    相关文章

      网友评论

        本文标题:HTML定位居中,居中技巧

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