Top
Fork me on Gitee

移动端点击出现蓝色背景框&pc端覆盖chrome浏览器input本身的背景颜色

原因: cursor: default; 点击出现高亮

如果是响应式可以使用媒体查询将样式重置

@media (max-width:768px) {
  a{
    cursor: default;
  }
}

/-webkit-autofill用于覆盖chrome浏览器本身的背景颜色/
input:-webkit-autofill{
box-shadow: 0 0 0px 1000px #fff inset;
}

posted @ 2020-08-24 11:03  lisashare  阅读(482)  评论(0编辑  收藏  举报