Chrome で CSS を使用して画像の下に反映させたい画像があります。画像は div 内にあり、画像の最大高さと最大幅を制限しました。
反射した画像は、画像の下部ではなく画像の上部を示しています。
実際の例へのリンクは次のとおりです。
コードは次のとおりです。
<!DOCTYPE HTML>
<html>
<head>
<style>
img{
-webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), to(rgba(255,255,255,0.2)));
max-height:315px;max-width: 220px;
}
div{overflow:hidden;height:275px;border:1px solid green}</style>
</head>
<body>
<div>
<img src="http://www.oracledigital.com.au/wp-content/uploads/2012/05/google-penguin-update.png" />
</div>
</body>
</html>
誰でもこの問題を解決できますか?