Answers for "html input display weird border on focus"

CSS
25

css remove border input focus

textarea:focus, input:focus{
    outline: none;
}
Posted by: Guest on June-30-2020
1

input focus border

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

Code answers related to "html input display weird border on focus"

Browse Popular Code Answers by Language