使用显示内联块和位置相对来集中div

时间:2015-02-27 20:29:07

标签: html css css3

我试图纵向和横向集中,但没有成功:

https://jsfiddle.net/szg7hhph/1/embedded/result/

HTML:

<div id="new__event">
  <div class="target">
    <h2>Free Pass</h2>
  </div>
</div>


body {
  margin: 0;
}

#new__event {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms;
}
#new__event {
  pointer-events: all;
  opacity: 1;
}
#new__event .target {
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding: 48px;
  width: 50%;
  margin: 0 auto;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
  background: white;
  color: #f98835;
  margin-top: 1.5rem;
}

我已经尝试了自动边距0自动对齐,文字对齐,纵向对齐,但框内仍然存在于角落里。

1 个答案:

答案 0 :(得分:8)

position的{​​{1}}更改为#new_event .target,删除absolute属性并添加以下新属性:

margin-top

这应该从IE 9开始。

<强>结果

enter image description here