Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

CSS3 box shadow property not working like it did before which was just like webkit

  • 2 trả lời
  • 6 gặp vấn đề này
  • 10 lượt xem
  • Trả lời mới nhất được viết bởi carasmo

more options

http://matthamm.com/box-shadow-curl.html In this link, if you look at it in Firefox 14.0.1 (which auto updated today) this technique no longer works as it did before. It used to look like it did in Chrome/Safari and Opera, which gives the look of the corners of the box being curled up.

[http://matthamm.com/box-shadow-curl.html] In this link, if you look at it in Firefox 14.0.1 (which auto updated today) this technique no longer works as it did before. It used to look like it did in Chrome/Safari and Opera, which gives the look of the corners of the box being curled up.

Tất cả các câu trả lời (2)

more options

Firefox 14 removed support for skew() transforms.skewX and skewY are available (but I have no idea how to use them...)

https://developer.mozilla.org/en/CSS/transform#skew_Non-standard

more options

Thanks!!! Yes, I just found that out. Can't explain it, but I played around. What was:

-moz-transform: skew(-15deg) rotate(-6deg)

is now:

-moz-transform: skewX(-15deg) skewY(0deg) rotate(-6deg);

I don't know if I need the skewY in there, but I'm leaving it. I will mess more with it later.