码迷,mamicode.com
首页 > 其他好文 > 详细

单个div垂直居中常用的方式

时间:2020-12-03 12:27:34      阅读:16      评论:0      收藏:0      [点我收藏+]

标签:box   head   doctype   alt   text   方式   htm   简单   mic   

话不多说先上要实现的效果:(很简单水平居中)

技术图片

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>元素垂直居中的方法</title>
    </head>
    <style type="text/css">
        /* 方式一 */
        .box{
            width: 100px;
            height: 100px;
            color: #fff;
            background: #000000;
            position:absolute;
            top: 50%;
            margin-top: -50px;
        }
    </style>
    <body>
        <div class="box">方式一</div>
    </body>
</html>

 

单个div垂直居中常用的方式

标签:box   head   doctype   alt   text   方式   htm   简单   mic   

原文地址:https://www.cnblogs.com/lhl66/p/14056938.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!