Answers for "css focus input set label"

CSS
-1

focus on input change label color

.input-group {
    display: flex;
    flex-direction: column-reverse;
}

input:focus + label {
    color: red;
}
Posted by: Guest on January-02-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