实现input标签隐藏边框
<input type="text" value="" style="border: 0 none; outline:none">
-
border:0 none
:消除边框。 -
outline:none
:点击边框的时候在IE中会显示蓝色的边框,设置outline可以消除这种状态。
实现input标签隐藏边框
<input type="text" value="" style="border: 0 none; outline:none">
border:0 none
:消除边框。outline:none
:点击边框的时候在IE中会显示蓝色的边框,设置outline可以消除这种状态。