<title>Example of CSS min-width Property Animation</title>
font: bold 46px sans-serif;
border: 1px solid #63a063;
-webkit-animation: test 4s infinite;
animation: test 4s infinite;
@-webkit-keyframes test {
<p><strong>Warning:</strong> CSS Animations do not work in Internet Explorer 9 and earlier versions.</p>
<p><strong>Note:</strong> The min-width property of the following DIV box is animating from its initial value "none" to "500px", and back to the initial value "none" again up to infinite times. The min-width property overrides the width property of the element.<p>
<div class="animated">Box</div>