Drop the -moz prefix for border-radius

Like the -webkit prefix we can now drop the -moz prefix for the border-radius CSS3 style.

The last versions of Mozilla Firefox supports the standard border-radius style.

Before

div{

-moz-border-radius: 5px;
border-radius: 5px;

}Code language: CSS (css)

Now

div{

border-radius: 5px;

}Code language: CSS (css)

Enjoy! ๐Ÿ˜‰

Leave a Reply

Your email address will not be published. Required fields are marked *