Answers for "default input focus border"

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

input focus css default

/* This removes all focus effects */
element:focus {
	outline-style: none;
	box-shadow: none;
	border-color: transparent; 
}
Posted by: Guest on December-08-2020

Browse Popular Code Answers by Language