I know there is a way to change the focus event for a button through CSS like button:focus {}
is there a way to change the onblur event (opposite of focus) through CSS?
Asked
Active
Viewed 37 times
0
-
`:focus` in CSS isn't an event, it's a state. The "blurred" state is just plain old `button` – andrewtweber Oct 09 '16 at 14:11
-
Agreed @FabianSchultz – Mihailo Oct 09 '16 at 14:14