首页 > 其他分享 >antd input框获取焦点点击输入历史保存的值后,背景颜色变成淡蓝色解决方法

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

时间:2022-10-26 22:17:49浏览次数:37  
标签:color 淡蓝色 internal antd input border

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;     }

标签:color,淡蓝色,internal,antd,input,border
From: https://www.cnblogs.com/zihang-cheng/p/16830242.html

相关文章