1
這是我必須實現圖像反射的當前CSS(雖然適用於包含imagehyperlinks的div標籤 - fb和twitter),並且它適用於Chrome和Safari。我如何在IE9中實現相同的效果?圖像反射CSS不工作在IE9?
.SocialIconStyle
{
width:27px; float:left;
-webkit-box-reflect: below 0
-webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0.5, transparent), to(white));
}
我還需要一個firefox解決方案。我發現的一切都需要'-moz-element()',但在我的情況下,並不是每個圖像都有一個id,但所有圖像都可以用'#foo img'來設置樣式。 –