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

垂直水平居中 多种实现

时间:2018-08-18 10:25:40      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:width   post   水平居中   ati   head   class   pos   abs   style   

1.postiton 元素已知宽度

 <style>
        /* 父相对 子绝对 子上下 margin l t -一半PX */
#box{
 background-color: lightblue;width: 300px;height:300px;
 position: relative;
         }
#content{
 position: absolute;background-color: tomato;
 height: 100px;width: 100px;
 left: 50%;top: 50%;margin: -50px 0 0 -50px;
         }
    </style>
</head>
<body>
      <div id="box">
          <div id="content">
          </div>
      </div>
</body>

 

垂直水平居中 多种实现

标签:width   post   水平居中   ati   head   class   pos   abs   style   

原文地址:https://www.cnblogs.com/zzzzzzzsy/p/9495986.html

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