您的位置:首页 > 其它

【技术】居中(不适用于IE7及以下版本)

2015-08-28 16:15 337 查看


html部分:

<div class="p-r">
  <div class="a-c-a"></div>
</div>

css部分:

.pr{
  position: relative;
}
.a-c-a{
  position: absolute;
  width: 200px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 400px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border: 1px solid red;
}

简写:

.pr{
  position: relative;
}
.a-c-a{
  position: absolute;
  width: 200px;
  height: 400px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid red;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: