媒體查詢常用樣式表:
<link rel="stylesheet" media="all and (orientation:portrait)" href="portrait.css"> // 豎放加載
<link rel="stylesheet" media="all and (orientation:landscape)"href="landscape.css"> // 橫放加載
//豎屏?xí)r使用的樣式
<style media="all and (orientation:portrait)" type="text/css">
#landscape { display: none; }
</style>
//橫屏?xí)r使用的樣式
<style media="all and (orientation:landscape)" type="text/css">
#portrait { display: none; }
</style>