Is there a way to modify the css for one class when hovering on an element from another class using only css ?
Something like:
.item:hover .wrapper {
You can do this. When hovering to the .item1, it will change the .item2 element.
.item1
.item2
.item1 { size:100%; } .item1:hover { .item2 { border:none; } } .item2{ border: solid 1px blue; }