1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | /* media */ /* 橫屏 */ @media screen and (orientation: landscape ){ } /* 豎屏 */ @media screen and (orientation: portrait ){ } /* 窗口寬度<960,設(shè)計寬度=768 */ @media screen and ( max-width : 959px ){ } /* 窗口寬度<768,設(shè)計寬度=640 */ @media screen and ( max-width : 767px ){ } /* 窗口寬度<640,設(shè)計寬度=480 */ @media screen and ( max-width : 639px ){ } /* 窗口寬度<480,設(shè)計寬度=320 */ @media screen and ( max-width : 479px ){ } /* windows UI 貼靠 */ @media screen and (-ms-view-state:snapped){ } /* 打印 */ @media print { } |