Efecto hover en etiquetas hermanas
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul>
<style>
ul:hover > :not(:hover) {
opacity: 0.5;
}
</style>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul>
<style>
ul:hover > :not(:hover) {
opacity: 0.5;
}
</style>