Answers for "how to remove input decoration in 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 outline of input css

.sidebar_searchcontainer > input {
    border:none;
    outline-width: 0;
}
Posted by: Guest on April-25-2021

Browse Popular Code Answers by Language