paulirish / css3please

use Autoprefixer instead. <3
http://css3please.com
387 stars 65 forks source link

-moz-background-clip #113

Closed Mottie closed 11 years ago

Mottie commented 11 years ago

I've been using the recommended css to prevent background leaking with a border radius:

-webkit-background-clip: padding-box;
   -moz-background-clip: padding;
        background-clip: padding-box;

but I just discovered the -moz-background-clip doesn't exist. Firefox uses background-clip (ref)

paulirish commented 11 years ago

true! we can remove.

On Tue, Nov 20, 2012 at 7:55 AM, Rob G notifications@github.com wrote:

I've been using the recommended css to prevent background leaking with a border radius:

-webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box;

but I just discovered the -moz-background-clip doesn't exist. Firefox uses background-clip (refhttps://developer.mozilla.org/en-US/docs/CSS/background-clip )

— Reply to this email directly or view it on GitHubhttps://github.com/paulirish/css3please/issues/113.

jonathantneal commented 11 years ago

Good catch, @Mottie! It hasn't been prefixed since Firefox 3.6. ref caniuse

paulirish commented 11 years ago

done! thanks. :)

also please enjoy repo collab on here. thank you sir!