huangshikun

媒介查询和字体自动调整

html{
    font-size:10px;
    
}
@media only screen and (min-width:321px ) and (max-width:375px) {
    html{font-size:11px;}
}
@media only screen and (min-width:376px ) and (max-width:414px) {
    html{font-size:12px;}
}
@media only screen and (min-width:415px ) and (max-width:639px) {
    html{font-size:15px;}
}
@media only screen and (min-width:640px ) and (max-width:719px) {
    html{font-size:20px;}
}
@media only screen and (min-width:720px ) and (max-width:749px) {
    html{font-size:22.5px;}
}
@media only screen and (min-width:750px ) and (max-width:799px) {
    html{font-size:23.5px;}
}
@media only screen and (min-width:800px ){
    html{font-size:25px;}
}

分类:

技术点:

相关文章:

  • 2021-12-18
  • 2021-09-28
  • 2021-11-05
  • 2021-09-28
猜你喜欢
  • 2022-01-25
  • 2021-12-05
  • 2021-12-05
  • 2021-12-06
  • 2021-09-10
  • 2021-11-16
  • 2021-08-13
相关资源
相似解决方案