Skip to content

Instantly share code, notes, and snippets.

@gossi
Created April 5, 2012 19:03
Show Gist options
  • Save gossi/2313264 to your computer and use it in GitHub Desktop.
Save gossi/2313264 to your computer and use it in GitHub Desktop.
CSS Animations (auto values)
/**
* CSS Animations (auto values)
*/
#anim {
border: 1px solid;
padding: 3px;
background-color: green;
color: white;
width: auto;
transition: width 1s;
}
#anim:hover {
width: 50%;
}
<!-- content to be placed inside <body>…</body> -->
<div id="anim">
animate to auto values
</div>
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment