在一個元素上:hover,改變另外一個元素的css屬性

若是兩者是父子關係,能夠寫成這種:css

.face:hover .eye-bottom {
                    margin-top: 30px;
                }

若是是兄弟關係:code

.face:hover+.ear-wrap {
                transform: rotate(-30deg);
            }

若是是兄弟的兒子:orm

.face:hover+.ear-wrap .ear {
                transform: rotate(-30deg);
            }

是用css的選擇器來實現的。form

相關文章
相關標籤/搜索