Answers for "how to add focus border (outline) around label"

CSS
1

input focus border

input:focus{
	border-color: inherit;
    -webkit-box-shadow: none;
	box-shadow: none;
}
Posted by: Guest on July-27-2021
1

css focus outline none

*:focus {
    outline: none;
}
Posted by: Guest on May-07-2021

Code answers related to "how to add focus border (outline) around label"

Browse Popular Code Answers by Language