1

我注意到,当它在Windows 8模式下运行时,与使用视口单元调整大小的桌面模式相比,IE10存在一些渲染差异。是否可以在Windows 8 Mode或CSS中使用IE10?

简而言之,似乎在Win 8模式下,vw单元的大小约为IE10桌面模式的两倍。

有什么已知的方式在Win8模式下定位浏览器?

是否有新的条件注释?

找不到对此的任何参考。

回答

0

也许这将帮助:

<script> 
if(window.Windows){ 
document.documentElement.setAttribute("metro", true); 
} 
</script> 
<style> 
     body { color: blue; } 
[metro] body { color: red; } 
</style> 
相关问题