手机键盘弹起 背景图问题

键盘弹起后,背景图会被顶上去,解决方法

 <div clss="login" :style="{ height: bodyHeight + 'px' }">

 mounted () {
    this.bodyHeight=document.documentElement.clientHeight
  }

 chrome表单自动填充后,input文本框的背景会变成偏黄色的 解决 可在reset.css中全局设置

input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0px 1000px #FCF1F5 inset;
  }

猜你喜欢

转载自www.cnblogs.com/kimm/p/10722949.html