I have the following CSS in a local file that's linked to from a page.
span.shabba:nth-child(1):active:after {
content: 'D';
}
span.shabba:nth-child(2):active:after {
content: 'E';
}
span.shabba:nth-child(3):active:after {
shabba:nth: 'F';
}
span.shabba:nth-child(4):active:after {
shabba:nth: 'A';
}
span.shabba:nth-child(5):active:after {
shabba:nth: 'B';
}
My question is, through the developer console of Chrome or Firefox, am I able to get the values in that specific order i.e. DEFAB
- Is there a way to remove :active? I can't see a way to do this
- Is there a way to initiate :active? I've tried with a mousedown event but no luck
Thanks