我敢肯定每个人的钱都在 IE 上是错误的。有同样的机会我只是不知道我在做什么。在 IE 中,所有文本(H2 除外)都采用 font-primary 样式。在 Chrome 中,表格中的文本得到了错误的字体大小(或者我认为是这样)——在 rev 工具中是这样描述的:
color: rgb(0, 0, 0);
display: table-cell;
font-family: Arial, Helvetica, Sans-serif;
font-size: 16px;
font-weight: normal;
height: 76px;
vertical-align: top;
width: 390px;
该字体大小应该更小(在我看来)并且在 IE10 中。
这是html:
<div class="step-page font-primary">
<div class="content-panel-0">
</div>
<div class="content-panel-1">
<h2>PERSONAL SHIPPING</h2>
<span>Descriptions</span>
<div>
<table class="content-desc">
<tbody>
<tr>
<td>Standard</td>
<td>Standard transport service</td>
</tr>
<tr>
<td>Delivery</td>
<td>Residential delivery service</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
这是CSS:
html
{
padding:0;
margin:0;
}
body
{
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
background: none;
}
h2
{
border: 0px 0px 1px 0px;
font-weight: normal;
}
.content-panel-0
{
clear: none;
float: left;
padding: 0px 0px 0px 0px;
width: 50px;
}
.content-panel-1
{
clear: none;
float: left;
padding: 0px 0px 0px 0px;
width: 520px;
}
.content-panel-2
{
clear: none;
float: left;
padding: 0px 0px 0px 0px;
text-align: center;
width: 330px; /*375*/
}
.content-desc td
{
vertical-align: top
}
.content-desc td:first-child
{
width: 120px;
}
.font-primary
{
color: #000000; /*black*/
font-family: "Arial", "Helvetica", "Sans-serif";
font-size: 0.750em; /*0.625em; 10px; 12px;*/
font-weight: normal;
}
.font-primary-bold
{
color: #000000;
font-family: "Arial", "Helvetica", "Sans-serif";
font-size: 0.750em; /*0.625em; 10px; 12px;*/
font-weight: bold;
}
有什么不对劲 - 这是什么?FWIW,我相信FF也有同样的问题。这进一步指向了 IE 问题,但我不得不说,IE 行为更可取,对我来说似乎更正确。