Answers for "delete input styles css"

CSS
6

remove input styling

input {
  border: none; /* Removes the default border */
}

input:focus {
  outline: none /* Removes the border when the input is clicked */
}
Posted by: Guest on May-01-2021
-1

remove all default styles from input

-webkit-appearance: none;
Posted by: Guest on October-27-2020

Browse Popular Code Answers by Language