admin 发表于 2021-2-7 06:37

媒体查询css自适应屏幕大小主要分六种


媒体查询css自适应屏幕大小主要分六种
@media only screen and (max-width : 1400px) {
}
@media only screen and (max-width : 1200px) {
}
@media only screen and (max-width : 1024px) {
}
@media only screen and (max-width : 910px) {
}
@media only screen and (max-width : 850px) {
}
@media only screen and (max-width : 640px) {}

页: [1]
查看完整版本: 媒体查询css自适应屏幕大小主要分六种