仅在查看框架时,jsfiddle结果有何不同?

时间:2013-11-09 21:53:58

标签: javascript html css jsfiddle

所以我在jsfiddle中有这个设计。

在safari和chrome中看起来真的很棒。但是,使用firefox,常规页面看起来不错,但是当我单独查看框架时,字体line-height似乎搞砸了。我网站上的输出最终看起来像“仅框架”版本。

有人可以看看它,看看他们是否可以解释为什么会这样?

注意g。

looks good (jsfiddle)

enter image description here

line-height messed up (jsfiddle result frame only)

enter image description here

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;}

1 个答案:

答案 0 :(得分:0)

这是一个字体问题。必须使用更友好的浏览器字体。浏览器以不同的方式呈现字体,并且在使用某些字体(如Arial Narrow

)时并非所有内容都准确无误