在媒体查询中screen
和only screen
有什么区别?
<link media="screen and (max-device-width: 480px)" rel="stylesheet" href="m.css" />
<link media="only screen and (max-device-width: 480px)" rel="stylesheet" href="m.css" />
为什么我们需要使用only screen
?screen
本身没有提供足够的信息来渲染只有的屏幕吗?
我见过许多响应式网站使用以下三种不同的方式:
@media screen and (max-width:632px)
@media (max-width:632px)
@media only screen and (max-width:632px)