扫码关注官方订阅号
已经设置了border为none,为什么还会出现这样的情况呢?uc上没问题,qq和微信是这种情况。还有为什么qq和微信点击元素周围会有个蓝色的框,放开就没有了
.form-group input[type="date"] { border: none; }
光阴似箭催人老,日月如移越少年。
outline: 0;-webkit-appearance: none;就去掉了
加上 outline: none;
试试加上outline:0
.form-group input[type="date"] { border: 0; outline:0; }
方法楼上都说了,我解释一下原因;基于webkit内核的浏览器会默认给input加上一个蓝色或黄色的outline。
webkit
input
outline
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
扫描下载App
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
outline: 0;
-webkit-appearance: none;
就去掉了
加上 outline: none;
试试加上outline:0
方法楼上都说了,我解释一下原因;
基于
webkit
内核的浏览器会默认给input
加上一个蓝色或黄色的outline
。