元素水平垂直居中

一些水平垂直居中的样式

1, some-class{

  position:absolute;

  left:0px;

  top:0px;

  right:0px;

  bottom:0px;

  margin:auto;

}

2, some-class{

  position: absolute;

  top: 50%;

  left: 50%;

  margin-top: -height/2;

  margin-left: -width/2

}

3, some-class {

  position: absolute,

  top: 50%,

  left: 50%,

  transform: translate(-50%, -50%);
}

posted @ 2016-06-19 08:52  清风叶  阅读(124)  评论(0编辑  收藏  举报