Possible Duplicate:
Using 3-digit color codes rather than 6-digit color codes in CSS
I was checking out the CSS of the new YouTube website. There are many examples of usages of 6-digit hex color codes when 3 are sufficient, eg:
color:#990000
color:#550000
color:#000000
color:#005500
I always prefer 3 characters in that case. Perhaps YouTube feels this makes it clearer and shortening this to 3 characters is not worth the minimal savings. That is fine. I am just wondering if there is not an additional technical benefit in using 6 characters - for instance, lack of compatibility of 3 chars with certain old browsers. Any idea?