I was curious which way to style CSS faster (rendering), and then from the perspective of best practice, which method makes more sense (would I say pretty subjectively?).
I can create base classes, for example:
.rounded-corners-5 { -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }
OR
I can make another method of applying styles to multiple identifiers / classes:
#box1, #header, #container, .titles { -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }
css
Anthony
source share