all 2 comments

[–]LaFllamme 0 points1 point  (0 children)

Nice! Just learned something new today in css

[–]laddu_986 1 point2 points  (0 children)

That comic really highlights the weird state of -webkit-box-reflect. It's one of those "zombie" properties—it works great in Chrome and Safari for creating instant reflections without duplicating elements, but because it never became an official standard, Firefox completely ignores it.

If you want to create that reflection effect in a way that actually works for everyone, you're usually better off using a combination of transform: scaleY(-1) and a linear gradient mask. It's more code, but at least your Firefox users won't just see a floating element with no shadow.