CSS rules can be easily compressed:
.rule
{
background-color: red;
}
to
.rule{background-color:red;}
to save up traffic. (remove spaces, tabs, newlines). But is it worth? Browsers can parse the files more quickly, or harder? What about google, SEO? Will they like it too? Any experiences?