danke weberleins, danach habe ich glaube ich gesucht. Ich werde das am Wochenende ausprobieren.
Naja Mock würde so aussehen:
.box1{position:relative;
height:250px;
width:250px;
background-color:green;}
.box2{position:relative;
height:250px;
width:250px;
background-color:blue;}
.box1:hover{
background-color:red;}
.box2:hover{
background-color:red;}
HTML:
...
<div class="box1">Aktivität X</div>
<div class="box2">Aktivität Y</div>
<div class="box1">Aktivtät X</div>
...
Sobald mal über ein box1 Element mit dem Zeiger fährt soll nicht nur die eine aktive box1 hovern, sondern alle box1 Elemente auf der Seite.
|