使用@media解决适配问题

问题:手机端登录没有适配

最开始想到的获取窗口的宽度来弄,发现麻烦
找了elementUl的基于断点的隐藏类发现可以修改css来解决
最终找到了css中的@media





解决方式

针对部分css采用@media适配
哪里需要修改哪里,最小修改原则

以前代码

 .img_login{
    position: absolute;
    width: 491px;
    height: 552px;
    z-index: 2;
  }

  .div_user{
    width: 826px;
    height: 506px;
    background-color: white;
    position: relative;
    top: 21px;
    left: 78px;
    border-radius: 24px;
    display: flex;
  }

  .padding{
    width: 413px;
    height: 506px;
  }



修改后的代码

  // 解决适配问题 900px以上的显示没问题,900以下适配一下就好了
  @media screen and (max-width: 900px) {
    .img_login{
     width: 0px;
     height: 0px;
   }
   .div_user{
    width: 90%;
    height: 506px;
    background-color: white;
    position: relative;
    top: 21px;
    left: 5%;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    transition:translateY(-50%)
  }
  .padding{
    width: 0px;
    height: 0px;
  }
}

@media (min-width: 900px) {
  .img_login{
    position: absolute;
    width: 491px;
    height: 552px;
    z-index: 2;
  }

  .div_user{
    width: 826px;
    height: 506px;
    background-color: white;
    position: relative;
    top: 21px;
    left: 78px;
    border-radius: 24px;
    display: flex;
  }

  .padding{
    width: 413px;
    height: 506px;
  }
}





效果图:

  • pc端
    在这里插入图片描述
  • 手机端
    在这里插入图片描述
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值