在CSS中使用rem作为单位时,缩放在Safari(PC和Mac)中都不起作用.
示例位于http://jsfiddle.net/L25Pz/3/
标记:
<div> <img src="http://www.google.com/images/srpr/logo3w.png" /> <p>Lorem ipsum dolor sit amet</p> </div>
CSS:
html { font-size:62.5% } div { background:url(http://www.google.com/images/srpr/logo3w.png); background-size:275px 95px; background-size:27.5rem 9.5rem; background-repeat:no-repeat; } img { width:27.5rem; height:9.5rem; } p { font-size:5rem; } @media only screen and (max-width: 500px) { html { font-size:50%;} /* should render everything * 0.8 */ }
…当浏览器窗口宽度超过600px时,在所有浏览器中呈现大小为275px * 95px的图像.此外,在触发媒体查询时,图像和背景会将其宽度和高度调整为220px * 76px.
但是 – 使用Safari,宽度和高度设置为247px * 75px.哪个不是* 0.8,这是别的……
另一方面,段落的字体大小正确呈现:挂钩查询时为40px.
如果你问我,我会感到很奇怪.
有人有解决方案吗?
解决方法
您需要将-webkit-text-size-adjust设置为none,否则webkit会将字体大小扩展为可读大小:
@media only screen and (max-width: 500px) { html { font-size:50%; -webkit-text-size-adjust:none; } /* should render everything * 0.8 */ }