I have the following HTML:
.menu {
width: 100%;
height: 75px;
background: #474747;
}
.menu li {
height: 75px;
text-transform: uppercase;
padding-left: 10px;
padding-right: 10px;
box-sizing: border-box;
float: left;
cursor: pointer;
position: relative;
-webkit-transition: all 200ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
-moz-transition: all 200ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
-o-transition: all 200ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
transition: all 200ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
/* easeInOutExpo */
-webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
-moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
-o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
/* easeInOutExpo */
}
.menu span {
font: 700 18px/18px"Open Sans";
color: #fff;
line-height: 75px;
}
.menu li:hover {
background: #fff;
}
.menu li span:hover {
color: #474747;
}
<div class="menu">
<div class="grid_960 margin-auto">
<ul>
<li>
<span>Home</span>
</li>
</ul>
</div>
</div>
I want when I hover over the li
, the span
changes. For now, span
is changing only when I hover over span
.