首页 > Web开发 > 详细

css 绝对定位实现水平垂直居中

时间:2019-03-21 11:50:35      阅读:173      评论:0      收藏:0      [点我收藏+]

负margin实现水平垂直居中

    width: 500px;
    height: 500px;
    position: absolute;
    left: 50%;
    top :50%;
    margin-left: -250px;  
    margin-top: -250px;

css3 translate 实现水平垂直居中

    width: 600px;
    height: 600px;
    position: absolute;
    left: 50%;
    top : 50%;
    transform: translate(-50%,-50%);

margin : auto实现水平垂直居中

    width: 650px;
    height: 650px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;

原文:小tip: margin:auto实现绝对定位元素的水平垂直居中

css 绝对定位实现水平垂直居中

原文:https://www.cnblogs.com/rosendolu/p/10570249.html

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