例如:
<!-- CSS media query on a link element -->
<link rel="stylesheet" media="(max-width: 800px)" href="example.css" />
<!-- CSS media query within a style sheet -->
<style>
@media (max-width: 600px) {
.facet_sidebar {
display: none;
}
}
</style>
CSS3 在哪里以及如何检索设备的最大宽度和高度以及设备类型和纵横比等数据?
[编辑] 作为开发人员,我是否需要做其他事情是我想要弄清楚的底线。但是内部结构的解释(概念上很好)将不胜感激!