CSS3 Image Reflections
Css
<style>
#reflectBox {
-webkit-box-reflect: below 0
-webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0.5, transparent), to(white));
}
</style>Html
<div id='reflectBox'><img src='image3.jpg' width='300' height='200' alt='Forest leaves'></div>