Answers for "how to hide border in input after clicking in csss"

6

html remove border from textarea

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

how to remove onclick input border

outline:none
Posted by: Guest on August-23-2020

Code answers related to "how to hide border in input after clicking in csss"

Browse Popular Code Answers by Language