我的高度属性在firefox中显示的结果与所有其他浏览器不同(safari,chrome act)。为什么?

时间:2012-04-01 14:26:51

标签: html css firefox cross-browser

我有一个简单的布局,并且firefox中的徽标看起来不同,我似乎无法在所有浏览器中获得均匀的媒体,因为当我在蓝色框中更改字母“f”的高度时它会影响所有浏览器。

我遇到的问题是使用div“logofoxfont”,因为我希望字母'f'在所有broswers中处于相同的位置,但它在firefox中似乎有所不同。

我该如何排序?

<html>
<head>
</head>
<link href="fw.css" rel="stylesheet" type="text/css">
<body>
<div class="topbox">
<div class="logobox"><div class="logoboxfont">
f</div></div>
<div class="logotext"></div>
</div>
<div class="midbox">
<div class="menubox"><div class="menuboxfont">Home<br>About Us<br>Staff<br>News<br></div>
<div class="menubox2"><div class="menuboxfont2">Appointments<br>
Price Guide<br>Emergency Services<br>Feedback<br></div></div></div>
</div>

</body>
</html>

而css是:

#logo{
background-image:url(40.jpg);
height:100px;
width:100px;
}

.topbox {
margin: 0px auto;
height:100px;
width:900px;
margin-top:0px;
background: #ffffff;
}

.logobox {
height:90px;
width:70px;
margin-top:10px;
background-color:#2FB2F4;
}

.logotext {
color: #333333;
font-family: Cambria;
font-size: 18px;
margin-top: -90px;
margin-left: 75px;
position:absolute;
}

#logotext1 {
margin-left:10px;
}

#logotext2 {
color: #00AAF5;
font-family: georgia;
font-size: 22px;
margin-top: -35px;
margin-left:10px;
}

.logoboxfont {
font-family:Cambria;
color: #ffffff;
font-size: 126px;
position:absolute;
margin-top:-20px;
margin-left:0px;

-moz-transform:rotate(10deg);
-webkit-transform:rotate(10deg);
-o-transform:rotate(10deg);
-ms-transform:rotate(10deg);
}

.midbox {
margin: 0px auto;
height:700px;
width:900px;
margin-top:0px;
background: #ffffff;
border-top: 1px solid #333333;
}

.menubox {
height:230px;
width:150px;
margin-top:10px;
background: #E6E6E6;
}

.menuboxfont {
color: #333333;
font-family:lucida grande;
font-size: 12px;
margin-top: 4px;
margin-left: 4px;
position:absolute;
}

.menubox2 {
height:160px;
width:150px;
margin-top:70px;
background: #FAFAFA;
position:absolute;
}

.menuboxfont2 {
color: #333333;
font-family:lucida grande;
font-size: 12px;
margin-top: 4px;
margin-left: 4px;
position:absolute;
}

感谢您的帮助!

詹姆斯

1 个答案:

答案 0 :(得分:0)

请参阅小提琴代码和演示:

小提琴:http://jsfiddle.net/kHtmf/1/

演示:http://jsfiddle.net/kHtmf/1/embedded/result/

Firefox的SS:

enter image description here

铬的SS:

enter image description here

Safari的SS:

enter image description here