<html>
<head>
<style>
#myDIV {
width:100%;
height:100%;
}
#myImg{
height: 30%;
display: block;
margin: 80px auto 0;
box-reflect: below;
}
</style>
</head>
<body>
<h1>The box-reflext Property</h1>
<div id="myDIV">
<p>This demo shows how to specify reflection of an element.</p>
<img src="img_flwr.gif" alt="Flowers" id="myImg" width="224" height="162">
</div>
</body>
</html>