0
How can I change the border attributes of the text boxes of my form? Things like border: none; dont work.
2 Antworten
+ 2
just add this css property
outline: none;
because you have already removed the borders on your inputs only the outline is left
- 1
If you want to make borders invisible try one of the css styles:
border: 0px;
border-width: none;
border-width: hidden;