Minimize the number of CSS files and compress them
Minimize the number of CSS files to reduce the number of HTTP requests. If several style sheets are used on all of the website’s pages, concatenate them into one single file.
Some CMS and frameworks offer ways to do such optimization automatically. The HTTP server can also be configured to compress and reduce the size of style sheets (see best practice #79).
Replace $i++ with ++$i
$i++ has the disadvantage of generating a temporary variable when incremented, which does not happen with ++$i.