首页 > 其他 > 详细

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

时间:2015-08-28 17:15:35      阅读:145      评论:0      收藏:0      [点我收藏+]

技术分享

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;
}

 

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

原文:http://www.cnblogs.com/ybingbing_1213/p/4766834.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!