去除点击input输入框默认出现的边框
2018-12-19 本文已影响0人
wait_cynthia
html代码
<input class="input" type="text" placeholder="写点什么吧!">
加入以下css代码即可
.input{
outline: none;
}
如有不对的地方或更好的方法请指出,感谢您的阅读
html代码
<input class="input" type="text" placeholder="写点什么吧!">
加入以下css代码即可
.input{
outline: none;
}
如有不对的地方或更好的方法请指出,感谢您的阅读