Is there an impact on user experience when CSS code is separated into multiple declarations?
I've come across .css files that are organized like the following:
/* Font Styles */
#text{ font-size: 12px; color: white;}
.highlight{ color: red}
/* END */
/* Div Positioning */
#text{ position: absolute;}
/* END */
Could this potentially lead to inefficiencies? While it may not be noticeable on a small scale, what about on large style sheets?