Answers for "input focus outline border"

CSS
17

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

Browse Popular Code Answers by Language