У меня есть такая структура dom:
<div class="wrapper">
<div class="style1"> ... another divs ... </div>
</div>
<div class="wrapper">
<div class="style2"> ... another divs ... </div>
</div>
<div class="wrapper">
<div class="style1"> ... another divs ... </div>
</div>
<div class="wrapper">
<div class="style2"> ... another divs ... </div>
</div>
<div class="wrapper">
<div class="style1"> ... another divs ... </div>
</div>
В style1
и style2
есть background-color
настройки для всех внутренних элементов div (помеченных как «еще один div»).* Теперь я хочу сделать фоновый переход для всех div внутри style1
и style2
:
.wrapper :hover
{
background-color: #ccc;
}
.wrapper
{
-moz-transition: background .2s linear;
-webkit-transition: background .2s linear;
-o-transition: background .2s linear;
transition: background .2s linear;
}
Это не работает (ничего не меняется).Когда я устанавливаю свойства hover для style1
и style2
, он меняет фон, но только при активном погружении мышь заканчивается.