分辨率

来源:互联网 发布:情绪垃圾桶知乎 编辑:程序博客网 时间:2024/04/19 22:44




/*******************分辨率****{************/
@media only screen and (min-device-width:321px) and (max-device-width:480px){
body,div,p,ul,li,textarea,form,input,h1,h2,h3,h4,h5,dl,dt,dd,img,section,article,aside,header,footer,nav,dialog,figure,hgroup{
font-size:12px;
}
m
}


@media only screen and (min-device-width:481px) and (max-device-width:640px){
body,div,p,ul,li,textarea,form,input,h1,h2,h3,h4,h5,dl,dt,dd,img,section,article,aside,header,footer,nav,dialog,figure,hgroup{
font-size:16px;
}


}


@media only screen and (min-device-width:721px) and (max-device-width:800px){
body,div,p,ul,li,textarea,form,input,h1,h2,h3,h4,h5,dl,dt,dd,img,section,article,aside,header,footer,nav,dialog,figure,hgroup{
font-size:20px;
}


}


@media only screen and (min-device-width:960px){
body,div,p,ul,li,textarea,form,input,h1,h2,h3,h4,h5,dl,dt,dd,img,section,article,aside,header,footer,nav,dialog,figure,hgroup{
font-size:24px;
}


}
/*******************分辨率****}************/

0 0