Create Account
Sign In

New tool: CSS Code Compressor

New tool: CSS Code Compressor

News written the 23/05/2015 at 07:09:12 by ybouane
Hi everyone,
Following the Javascript Code Compressor, today we added a new tool, the CSS Code Compressor.
This tool let you reduce the size of your CSS stylesheet and make your website load faster. The tool removes unnecessary characters and optimizes the CSS code to minimize it size without changing the final result.

By taking an example code (168 Bytes):
/* Uncompressed CSS Code*/
div
{
color: rgb(0, 0, 0);/* Useless comment */
font-weight: 800 ;
}

p
{
color: #ff0000;
background: url("mypicture.png");
}

You can get a significantly smaller CSS code (75 Bytes):
div{color:#000;font-weight:800}p{color:red;background:url("mypicture.png")}

You can start using the tool now:
CSS Code Compressor (Minifier)

Thank you and we hope this tool will be useful :) !