Answers for "remove input decoration css"

CSS
6

html remove border from textarea

textarea {
    border: none;
    background-color: transparent;
    resize: none;
    outline: none;
}
Posted by: Guest on July-28-2020
2

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
53

text-decoration css

h1 {
  text-decoration: overline;
}

h2 {
  text-decoration: line-through;
}

h3 {
  text-decoration: underline;
}

h4 {
  text-decoration: underline overline;
}
Posted by: Guest on February-20-2020

Browse Popular Code Answers by Language