remove input decoration css code example
Example 1: html remove border from textarea
textarea {
border: none;
background-color: transparent;
resize: none;
outline: none;
}
Example 2: text-decoration css
h1 {
text-decoration: overline;
}
h2 {
text-decoration: line-through;
}
h3 {
text-decoration: underline;
}
h4 {
text-decoration: underline overline;
}
Example 3: remove input styling
input {
border: none; /* Removes the default border */
}
input:focus {
outline: none /* Removes the border when the input is clicked */
}
Example 4: remove bullets css
list-style-type: none;