css 原生@media响应式、自适应写法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* 小于等于 769px */
@media (max-width: 767px) {
/* 你的样式 */
}
/* 小屏幕(平板,大于等于 768px) */
@media screen and (min-width: 768px) {
/* 你的样式 */
}

/* 中等屏幕(桌面显示器,大于等于 992px) */
@media screen and (min-width: 992px) {
/* 你的样式 */
}

/* 大屏幕(大桌面显示器,大于等于 1200px) */
@media screen and (min-width: 1200px) {
/* 你的样式 */
}

/* 769px到992px之间 */
@media (min-width:768px) and (max-width: 992px){
/* 你的样式 */
}

横屏竖屏:https://blog.csdn.net/qq_42618566/article/details/105292822


css 原生@media响应式、自适应写法
https://github.com/chergn/chergn.github.io/607632db2f9f/
作者
全易
发布于
2024年3月28日
许可协议