Skip to content

Require standard property with vendor prefix

nzakas edited this page Oct 24, 2011 · 4 revisions

When using vendor-prefixed properties such as -moz-border-radius, make sure to also include the standard property. The standard property should preferably come after the vendor-prefixed one, such as:

.foo {
    -moz-border-radius: 5px;
    border-radius: 5px;
}

Rule ID: vendor-prefix

Clone this wiki locally