Posts by ITALO • 1 point
1 post
-
0
votes5
answers62952
viewsA: How to remove edge of input and textarea from all browsers when clicked?
You can set a class or id for the component, for example: <input class="form-itens"> And then set up in the CSS file: .form-itens:focus { box-shadow:none; } That will solve.…