Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

on class hover another class color change

/* For wrapper is a child of item */
.item:hover .wrapper {
    color: #fff;
    background-color: #000;
}

/* For wrapper is another div and item is another */
.item:hover ~ .wrapper {
    color: #fff;
    background-color: #000;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #class #hover #class #color #change
ADD COMMENT
Topic
Name
4+8 =