首页 > 其他 > 详细

元素居中几种写法

时间:2017-12-29 22:10:52      阅读:233      评论:0      收藏:0      [点我收藏+]
    /**
         * 兼容所有浏览器,不兼容移动端
         * 元素必须有固定宽度高度
         */
        .box{
            width: 320px;
            height: 320px;
            background: red;
            position: absolute;
            left: 50%;
            top: 50%;
            margin-top: -160px;
            margin-left: -160px;
        }


/**
         * 绝对居中法
         * 兼容ie8以上浏览器
         * 元素必须有固定宽度高度,可以百分比
         */
        .box{
            width: 320px;
            height: 320px;
            background: red;
            margin: auto;
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
        }


/**
         * transform css3特性 平移
         * 兼容ie9以上版本浏览器,适合移动端元素居中
         * 元素无需固定宽高,宽高可以设置百分比
         */
        .box{
            width: 320px;
            height: 320px;
            background: red;
            position: absolute;
            left: 50%;
            top:50%;
            transform: translate(-50%, -50%);
        }


/**
         * flex弹性盒模型居中法
         * 兼容ie10以上浏览器
         * 元素无需固定宽高
         * 灵活
         */
        .wrap{
            width: 880px;
            height: 550px;
            border: 1px solid  red;
            margin: 10px auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .box{
            width: 400px;
            height: 200px;
            background: green;
        }

 

元素居中几种写法

原文:https://www.cnblogs.com/lzy007/p/8146331.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!