CSS - Which method is better?
- by Joe
Which is better in regards to processing time but also taking into account ease of use for a developer?
.font_small{ font-size:10px; }
.font_blue{ color:blue; }
.font_red{ color:red; }
<span class="font_small font_blue">Hello World!</span><br />
<span class="font_small font_red">Today's the day!</span>
OR
…