How to change span color on div hover
I am trying to change color of span on div's hover How to make the red hamburger button (which is span) to change the color to black on div's hover PS: Right now it does it on span's hover JSFiddle: https://jsfiddle.net/bjjbqct8/ .mobile-nav-toggle { height: 50px; width: 35px; margin-right: 31px; background: #ddd; display: flex; align-items: center; cursor: pointer; } .mobile-nav-toggle span, .mobile-nav-toggle span::before, .mobile-nav-toggle span::after { border-radius: 2px; content: ""; display: block; height: 6px; width: 100%; background: rgba(177, 66, 66, 0.8); position: relative; }