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).
Cache the bytecode
Bytecode (called opcode for PHP) is the binary code generated from the source code. Some accelerators are able to cache bytecode, which avoids needing to recompile it from the source code every time. Less time spent compiling equals less CPU and RAM used.








