CSS
Desk
ß
Reset
Reset the code to the default
Blueprint
Grid
Desk
White
Black
12 col
16 col
Change the background
Save
Save your changes to this link
Share
Create a permanent link for this code
Download
Download this code as a file
«
HTML
<div class="parent"> Parent <div class="child"> Child </div> </div>
CSS
@-webkit-keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } div { border: 5px solid #000; padding: 5px; } div:hover { border-color: #F00; } .child { display: none; } .parent:hover .child { display: block; -webkit-animation: fadeIn 1s; animation: fadeIn 1s; }