Reputation: 10342
How can I remove the border around an <input type="text">
and make its background transparent?
Upvotes: 32
Views: 94674
Reputation: 3540
border: none transparent;
outline: none;
This will not only remove the border around the input field but also the orange highlight when the input is in focus.
Upvotes: 23