Fork me on GitHub

antd input框获取焦点点击输入历史保存的值后,背景颜色变成淡蓝色解决方法,输入框获取焦点后边框会有一圈淡蓝色光边

input:-internal-autofill-previewed,
input:-internal-autofill-selected {
      // -webkit-text-fill-color: #2a2d33;
      transition: background-color 5000s ease-out 0.5s;
    }

将此样式加到当前页面。

或者给 input 加上 autoComplete="off"。

 

去除输入框获取焦点后边框一圈淡蓝色光边,border想要就加上

.ant-input:focus {
      border: none;
      box-shadow: none;
      border: 1px solid #d2d5e1;
    }
posted @ 2022-10-26 21:56  让梓航飞  阅读(292)  评论(0)    收藏  举报