I want a selector for all children of an element on focus
I've tried the following and it didn't work
#myElement > * :focus { /*stuff*/}
I want a selector for all children of an element on focus
I've tried the following and it didn't work
#myElement > * :focus { /*stuff*/}
focus only works with elements that accept keyboard input. try toggling a class from javascript based on events like "Focus" and "blur"