跨浏览器的传奇中心

时间:2016-04-18 16:15:56

标签: html css

我的浏览器中的传奇内容得到了不同的结果:

应该是这样的:

Chrome

但我在其他浏览器上获得了不同的边距:

Firefox

HTML

<div class="teaser-header">
<fieldset class="teaser-fieldset">
  <legend class="teaser-legend">We are a very passionate team</legend>
  <h1>Who we are</h1>
</fieldset>
</div>

CSS

.teaser-header {
    padding-top: 70px;
}
.teaser-fieldset {
  border: 1px solid white;
  color: white;
  text-align: center;
  width: 400px;
  margin: auto;
}

.teaser-fieldset h1 {
  color: white;
  text-align: center;
  margin: 0;
  padding-bottom: 20px;
  font-family: "Montserrat";
}

.teaser-legend {
  padding: 0 10px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  color: white;
  font-size: 1em;
  text-transform: uppercase;
  margin-bottom: 0;
}

有什么想法吗?谢谢!

1 个答案:

答案 0 :(得分:3)

margin-leftmargin-right明确设置为10%似乎可以解决中心问题。 10%的值只是(100% - width)的一半。

&#13;
&#13;
.teaser-header {
  padding-top: 70px;
}

.teaser-fieldset {
  border: 1px solid white;
  color: white;
  text-align: center;
  width: 400px;
  margin: auto;
}

.teaser-fieldset h1 {
  color: white;
  text-align: center;
  margin: 0;
  padding-bottom: 20px;
  font-family: "Montserrat";
}

.teaser-legend {
  /* padding: 0 10px; remove this */
  width: 80%;
  margin-left: 10%; /* change this */
  margin-right: 10%; /* change this */
  color: white;
  font-size: 1em;
  text-transform: uppercase;
  margin-bottom: 0;
  text-align: center; /* add this */
}

body {
  background: black;
}
&#13;
<div class="teaser-header">
  <fieldset class="teaser-fieldset">
    <legend class="teaser-legend">We are a very passionate team</legend>
    <h1>Who we are</h1>
  </fieldset>
</div>
&#13;
&#13;
&#13;