Webkit 与 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;
}
Alright, so in Mozilla my website looks as I intended. However, in webkit browsers, h1 and h2 elements are shifted down by about 4px. What's the deal?
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;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
inline-block
而不是float
可能会更幸运,因为这样可以避免摆弄line-height
。此处座右铭
之前的#headbox
从float: left;
更改为display : inline-block;
h1
中删除line-height: 50px;
中删除
height: 50px;
#标题You might have better luck using
inline-block
instead offloat
, as that avoids having to fiddle around withline-height
.<br>
beforemotto here
#headbox
fromfloat: left;
todisplay: inline-block;
line-height: 50px;
fromh1
height: 50px;
from#header