@media 媒体查询

230 阅读1分钟

设备常用尺寸

/* phones ( <= 600px ) */
@media only screen and (max-width: 600px) {
    // 
}

/* portrait tablets and large phones ( >= 600px ) */
@media only screen and (min-width: 600px) {
    //
}

/* landscape tablets ( >= 768px ) */
@media only screen and (min-width: 768px) {
    //
} 

/* laptops/desktops ( >= 992px) */
@media only screen and (min-width: 992px) {
    //
} 

/* large laptops and desktops ( >= 1200px ) */
@media only screen and (min-width: 1200px) {
    //
}

媒体类型

allprintscreenspeech
适用于所有设备用于打印机和打印预览用于电脑屏幕,平板电脑,智能手机等应用于屏幕阅读器等发声设备

逻辑操作符

and not only ,

媒体特性

名称描述参数
light-level环境光亮度
orientation视窗方向portrait,landscape
width视窗宽度
height视窗高度