Webkit与Mozilla的垂直对齐差异

时间:2011-04-13 21:50:56

标签: html css webkit alignment mozilla

好吧,所以在Mozilla我的网站看起来像我的意图。但是,在webkit浏览器中,h1和h2元素向下移动约4px。这是什么交易?

http://wbjah.com/stackoverflow.htm

h1 {
color: #739e39;
text-shadow: 0px 0px 5px #000;
font-size: 50px;
font-weight: bold;
margin: 0px;
line-height: 50px;
padding: 0px;
}

h1 a:hover{
color: #739e39;
text-shadow: 0px 0px 5px #739e39;
font-size: 50px;
font-weight: bold;
}

h2 {
color: #739e39;
text-shadow: 0px 0px 5px #000;
font-size: 40px;
font-weight: bold;
margin: 0px;
line-height: 40px;
padding: 0px;
}

1 个答案:

答案 0 :(得分:1)

使用inline-block代替float可能会有更好的运气,因为这样可以避免使用line-height

  1. 删除<br>
  2. 之前的motto here
  3. #headboxfloat: left;更改为display: inline-block;
  4. line-height: 50px;
  5. 删除h1
  6. height: 50px;
  7. 删除#header