
Ordering CSS3 Properties
CSS
September 21, 2010
While writing CSS3 properties, generally we try to put the Vendor prefixes at the beginning and the ‘real’ property at the last. It should look like this: .not-a-square { -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; } But what will happen if we do it ...Read More