How can I style one aria-label among several?
This is on Twitter:
<
div aria-label="replies, Retweets, Retweeted, likes">
I want to style only aria-label : Retweeted.
But not the other : replies, Retweets, likes
I tried this:
[aria-label='Retweeted'] {
background-color: #ddffdd;
}
but it doesn't work.
Thanks a lot in advance.