css-居中

65 阅读1分钟
/*普通盒子居中*/
.center {
  width:320px;
  /* 必须指定宽度 */
  margin:0 auto;
}
/*定位居中*/
.position-center {
  width: 320px;
  left: 50%;
  margin-left: 320/2;
}