1、问题点:当你开发一套网站发现未适配手机时,以下的解决方案可能会帮助到你。


2、当宽度小于640px的时候加载css下的css-mobile.css
<link href="css/css-mobile.css" rel="stylesheet" type="text/css" media="screen and (max-width: 640px)">

当宽度大于640px的时候加载css下的css-pc.css
<link href="css/css-pc.css" rel="stylesheet" type="text/css" media="screen and (min-width: 640px)">



3、通过隐藏适配pc端代码


.nav_content{
display: none;
}

.banner{
display: none;
}


.school{
display: none;
}


.copyrights{
display: none;
}



4、有图有真相:


pc

官网适配手机诀窍


phone


官网适配手机诀窍


相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-24
  • 2022-02-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
猜你喜欢
  • 2021-11-29
  • 2022-12-23
  • 2021-12-25
  • 2022-12-23
  • 2021-10-27
  • 2022-12-23
  • 2021-12-12
相关资源
相似解决方案