Effet de survol sur l'élément de frères et sœur

/* Mark the sibling with the 'peer' class
Now you can use 'peer-focus', 'peer-hover',.. to style the target element

https://tailwindcss.com/docs/hover-focus-and-other-states#styling-based-on-sibling-state
*/
<div>
	<div class='peer'>Some Div</div>
	<div class='peer-hover:bg-rose-300 peer-focus:bg-white'>
		Another Div
	</div>
</div>
Inquisitive Iguana