Drop the -moz prefix for border-radius

05 January 2012 by Rick ~ 0 Comments 211 views

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;

}

Now

div{

border-radius: 5px;

}

Enjoy! ;)

Subscribe by E-mail:

« »
Add a Comment

Use [code] example piece of code [/code] to insert code into your comment.