So I want to change the color of the text on hover
or focus
<div class="hover:text-green-500 focus:text-green-500">foo bar</div>
But I was wondering if is possible to compress all in one statement, so I would not need to repeat the text-green-500
for both. I tried the code below, but it becomes an and statement instead of or.
<div class="hover:focus:text-green-500">foo bar</div>
In pure CSS, what I'm looking for to do would be something like this:
div:hover, div:focus {
color: green
}
Is that possible in Tailwind CSS?