移动Safari领先/行高问题(使用@ font-face)

时间:2013-01-08 23:52:18

标签: css mobile-safari font-face

我正在开发一个自适应网站,而且我自己没有移动设备。 (仍然生活在黑暗时代)无论如何,我的同事已经给我发了一个ipad网站的屏幕截图。

领先/行高非常糟糕,但在常规Safari中看起来很好。这是一些相关的(我认为)CSS:

@font-face {font-family: 'Rubrik-Regular';src: url('fonts/237360_5_0.eot');src: url('fonts/237360_5_0.eot?#iefix') format('embedded-opentype'),url('fonts/237360_5_0.woff') format('woff'),url('fonts/237360_5_0.ttf') format('truetype'); font-style: normal; font-weight: normal; }
@font-face {font-family: 'Rubrik-Medium';src: url('fonts/237360_6_0.eot');src: url('fonts/237360_6_0.eot?#iefix') format('embedded-opentype'),url('fonts/237360_6_0.woff') format('woff'),url('fonts/237360_6_0.ttf') format('truetype'); font-style: normal; font-weight: bold; }
@font-face {font-family: 'Rubrik-Bold';src: url('fonts/237360_7_0.eot');src: url('fonts/237360_7_0.eot?#iefix') format('embedded-opentype'),url('fonts/237360_7_0.woff') format('woff'),url('fonts/237360_7_0.ttf') format('truetype'); font-style: normal; font-weight: bold; }

html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} 

html{font-size:81.25%;-webkit-text-size-adjust:81.25%;-ms-text-size-adjust:81.25%}  /* shrink to ~13px body font without changing all other sizes */
/* 16px base font size with 162.5% (26px) line height */
body, button, input, select, textarea { font: 1em/1.6154em 'Rubrik-Regular', Arial, Verdana, sans-serif; color: #262626; }

这是一个并排比较:

Mobile vs Desktop Safari

live demo link

为什么不考虑线高?

1 个答案:

答案 0 :(得分:0)

这似乎解决了它:

html{ font-size: 16px; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%} 

我错误地试图像这样调整字体大小:

html{ font-size: 82.5%; -webkit-text-size-adjust:82.5%; -ms-text-size-adjust:82.5%} 

尺寸调整参数在移动设备上偷偷地杀了我的排版。