1
所以我在jsfiddle中有這個設計。jsfiddle僅在查看框架時結果不同嗎?
它在safari和chrome中看起來很不錯。但是,使用Firefox時,常規頁面看起來不錯,但是當我單獨查看框架時,字體行高似乎會變得混亂。我的網站上的輸出結果看起來像「僅限幀」版本。
任何人都可以看看它,看看他們是否可以解釋爲什麼會發生這種情況?
注意g。
line-height messed up (jsfiddle result frame only)
HTML
<div id="formPage">
<div id="formBox">
<div class="formSection" style="border:1px solid black;">
<div class="formLine" style="height:49px;position:relative;">
<div class="indent">This is a needed label that I put over the textarea that describes what people are filling out.</div>
<div class="whiteIndent"></div>
<div class="borderIndent"></div>
<div class="whiteIndent2"></div>
<div class="borderIndent2"></div>
<textarea name="text1" class="indent" rows="3" maxlength="360"></textarea>
</div>
</div>
</div>
CSS
* { }
*, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
#formPage {
font-family: 'Arial Narrow', Arial, sans-serif;font-size:13px;
background:#fff;
border: 1px solid #d8d8d8;
border-bottom-width: 2px;
border-top-width: 0;
width:910px;
margin:0 auto;
padding:30px;
height:100px;
}
.formLine > textarea.indent {
position:absolute;
font-family: 'Arial Narrow', Arial, sans-serif;
font-size:13px;
background-color:#E2F4FE;
width:818px;
z-index:0;
top:0px;
padding: 0;
outline: 0;
border:0;
resize:none;
overflow:hidden;
box-sizing: border-box;
}
.formLine > div.indent { position:absolute;z-index:2;top:0;background-color:#fff;padding:2px 2px 2px 1px; }
.formLine > div.whiteIndent { position:absolute;z-index:2;top:16px;width:820px;height:3px;background-color:#fff; }
.formLine > div.borderIndent { position:absolute;z-index:2;top:17px;left:0;border-top:1px solid #000;width:823px;height:1px; }
.formLine > div.whiteIndent2 { position:absolute;z-index:2;top:32px;width:820px;height:3px;background-color:#fff; }
.formLine > div.borderIndent2 { position:absolute;z-index:2;top:33px;left:0;border-top:1px solid #000;width:823px;height:1px; }
.formSection { float:left;width:825px;border-right:2px solid #000;border-bottom:1px solid #000;font-size:13px;}
這兩個圖像看起來和我完全相同。請問你能證明問題在哪裏(或者不這樣做,如果那是我的問題,其他人都能理解)。 – dbanet
@dbanet看看g's。在第二張圖片上,他們在底部被切斷,而第一張圖片則在藍色的中心。 – bryan
我真的無法在我的系統上重現:http://i.imgur.com/CBOAx3s.png – dbanet