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

div水平垂直居中

时间:2018-09-06 14:48:31      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:splay   padding   temp   oat   pre   垂直居中   ima   sda   div   

水平垂直居中

效果

技术分享图片

 

html

    <div class="m-box">
      <div class="m-temp">
        <div class="m-item">fsdafsfasdf</div>
        <div class="m-item">fsdafsfasdf</div>
        <div class="m-item">fsdafsfasdf</div>
      </div>
    </div>

css

  .m-box{
    background-color: #66fff7;
    height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .m-temp{
    background-color: cornflowerblue;
    margin-left: auto;
    margin-right: auto;
  }
  .m-item{
    margin: 10px;
    padding: 10px;
    background-color: white;
    float: left;
  }

 

水平居中

技术分享图片

 

 

改m-temp如下

.m-temp{
background-color: cornflowerblue;
margin-left: auto;
margin-right: auto;
/*margin-top: auto;*/
margin-bottom: auto;
}

 

垂直居中

效果

技术分享图片

 

改m-temp如下

  .m-temp{
    background-color: cornflowerblue;
    /*margin-left: auto;*/
    /*margin-right: auto;*/
    margin-top: auto;
    margin-bottom: auto;
  }

 

div水平垂直居中

标签:splay   padding   temp   oat   pre   垂直居中   ima   sda   div   

原文地址:https://www.cnblogs.com/lurenjia1994/p/9597628.html

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