How to establish a smooth appearance of the text through hover without jquery?
<div class='first_block'> <div class='second_block'>Текст</div> </div> .first_block { display: inline-block; width: 300px; height: 200px; border: 1px red solid; padding: 10px; } .second_block { display: none; } .first_block:hover .second_block { display: block; }