其他分享
首页 > 其他分享> > css3的box方法实现水平垂直居中

css3的box方法实现水平垂直居中

作者:互联网

<div class="center">
  我是多行文字,我是多行文字,我是多行文字
</div>
.center {
  width: 100px;
  height: 100px;
  padding: 10px;
  border: 1px solid #ccc;
  margin: 20px auto;
  word-break: break-all;


  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  
  display: -moz-box;
  -moz-box-orient: horizontal;
  -moz-box-pack: center;
  -moz-box-align: center;
  
  display: -o-box;
  -o-box-orient: horizontal;
  -o-box-pack: center;
  -o-box-align: center;
  
  display: -ms-box;
  -ms-box-orient: horizontal;
  -ms-box-pack: center;
  -ms-box-align: center;
  
  display: box;
  box-orient: horizontal;
  box-pack: center;
  box-align: center;
}

 

标签:css3,box,center,align,居中,display,horizontal,orient
来源: https://www.cnblogs.com/Blogzlj/p/14012121.html