Answers for "how to hide a fieldset border"

1

how to remove button decoration

button {
    border: none;
}

button:focus {
    border: none;
    outline: none;
}

button:focus{
    outline:none !important;
}
(add !important if it is used in Bootstrap)
Posted by: Guest on April-29-2020
1

how to remove onclick input border

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

Browse Popular Code Answers by Language