web开发-界面适配手机、电脑、平板屏幕
发表时间:2020-6-10
发布人:葵宇科技
浏览次数:56
/* Custom, iPhone Retina */
@media>(min-width : 320px) {
}
/* Extra Small Devices, Phones */
@media>(min-width : 480px) {
}
/* Small Devices, Tablets */
@media>(min-width : 768px) {
}
/* Medium Devices, Desktops */
@media>(min-width : 992px) {
}
/* Large Devices, Wide Screens */
@media>(min-width : 1200px) {
}
把要适配的样式写在里面,可以适配手机、电脑、平板等设备
例:
在线考试 --题目列出
电脑端
手机端
成功了!!