There is a link suggesting that a block pops up.
Here is the html:
<a class="outside" href="#"> <div class="outside_hover cf"> <i class="wood f_left"></i> <span class="f_left">Дерево</span> <p class="f_left">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Alias debitis eaque est eum harum </p> </div> </a> and scss:
.outside { background: url("../img/outside.png") no-repeat scroll; width: 464px; height: 668px; position: relative; display: block; @include transition(all 0.2s ); &:hover { .outside_hover { display: block; margin: 0 auto; background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0; @include size(464px, 668px); position: relative; } } } I want the .outside_hover block .outside_hover pop up smoothly and everything in it, but now the transition not working.
transitionto.outside_hover. What do you expect?.outside_hoverare no default values forbackgroundon.outside_hovereither. What to change smoothly something? Specify a complete example on which the problem is reproduced completely, and not a piece of code withinclude. - VenZell