Reputation: 622
input
When I click on the input to create a blue border.
what i do to make not this border?
input{border:0px; border-bottom:1px solid black;} </head> <body> <input type="text">
Upvotes: 0
Views: 91
Reputation: 2536
add this:
input:focus{ outline: 0; }
Upvotes: 2