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;
}
-moz-border-radius: 5px;
border-radius: 5px;
}
Now
div{
border-radius: 5px;
}
border-radius: 5px;
}
Enjoy!
Related PostsIf you liked Drop the -moz prefix for border-radius; the posts below might interest you too:
|



