我已經設置了這些媒體查詢。但是,如何編輯此圖像以爲縱向,橫向版本(例如:iPad,iPhone)設置單獨的媒體查詢?區分媒體查詢中的縱向和橫向版本
@media only screen and (min-width : 1824px) {}
@media only screen and (min-width: 1200px) and (max-width: 1823px) {}
@media only screen and (min-width: 992px) and (max-width: 1199px) {}
@media only screen and (min-width: 768px) and (max-width: 991px) {}
@media only screen and (max-width: 767px) {}
@media only screen and (max-width: 480px) {}
http://stackoverflow.com/questions/5735467/css-media-queries-is-it-possible-to-detect-portrait-landscape-tablet-mode –
@PhilipDernovoy感謝。但是我無法將'和(orientation:portrait)'放入我的css中。因爲只有@ @media屏幕和(min-width:768px)和(max-width:991px){}'或'@media屏幕和(max-width:767px){}'可用於示例一個iPad(1024x768)風景版本。 – Becky
也許這可以幫助你https://css-tricks.com/snippets/css/media-queries-for-standard-devices/ –