前端 - date属性的input文本框在微信上会出现奇怪的边框?
大家讲道理
大家讲道理 2017-04-17 11:37:38
0
5
607

已经设置了border为none,为什么还会出现这样的情况呢?
uc上没问题,qq和微信是这种情况。
还有为什么qq和微信点击元素周围会有个蓝色的框,放开就没有了

.form-group input[type="date"] {
    border: none;
}

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

reply all(5)
小葫芦

outline: 0;
-webkit-appearance: none;
was removed

迷茫

Add outline: none;

PHPzhong

Try adding outline:0

左手右手慢动作
.form-group input[type="date"] { 
border: 0; 
outline:0;
}
Ty80

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.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template