已经设置了border为none,为什么还会出现这样的情况呢?uc上没问题,qq和微信是这种情况。还有为什么qq和微信点击元素周围会有个蓝色的框,放开就没有了
.form-group input[type="date"] { border: none; }
光阴似箭催人老,日月如移越少年。
outline: 0;-webkit-appearance: none; was removed
Add outline: none;
Try adding outline:0
.form-group input[type="date"] { border: 0; outline:0; }
The method is mentioned above, let me explain the reason; Browsers based on the webkit kernel will add a blue or yellow input to outline by default.
webkit
input
outline
outline: 0;
-webkit-appearance: none;
was removed
Add outline: none;
Try adding outline:0
The method is mentioned above, let me explain the reason;
Browsers based on the
webkit
kernel will add a blue or yellowinput
tooutline
by default.