0

实时代码

如何修复class="content_push"跨浏览器的边距一致。

Chrome 给了我我喜欢的在此处输入图像描述 与 IE9、opera、ff 相比的视图,看起来像: 在此处输入图像描述

<div class="content_push">
  <section class="cc">
    <div class="margin_wrapper">
      <header>
        <hgroup>
          <h1 class="at">rocking grass out styles for everyone.</h1>
          <h2 class="ast">The you mice structure for to of almost ability an trying the when designer dissolute that constructing in quickly distinct...</h2>
        </hgroup>
      </header>
      <h3 class="title_header">the good</h3>
      <p></p>
      <h3 class="title_header">the bad</h3>
      <p></p>
      <h3 class="title_header">the ugly</h3>
      <p></p>
    </div>
  </section>

</div>

CSS

.mc {
min-height:100%;
    width:100%;
    background:#fff;
    z-index:1;
    position:absolute;
    border-top:1px #c9cacc solid;
}

.content_push {
    margin-top:-35%;
    position:absolute;
    z-index:10;
    background:#FFF;
}
4

1 回答 1

3

我不知道它是否会起作用(我认为它会起作用),但您可以尝试“重置”css,然后它们会应用您的样式。在此处查看:http ://meyerweb.com/eric/tools/css/reset/在使用样式之前应用此 URL 中显示的样式。还有其他的css重置器,谷歌搜索。

于 2012-07-22T04:03:53.390 回答