🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### 媒体布局 ```css @media screen and (min-height: 480px) and (max-height: 568px) { } @media screen and (min-height: 568px) and (max-height: 667px) { } @media screen and (min-height: 667px) and (max-height: 799px) { } @media only screen and (device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) { } @media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) { } ```