Merhaba hiç bilmiyordum ama sayende öğrendim. Css compressor alt alta olan css kodlarını yanyana yazarak sıkıştırıyor ve çok azda olsa css kodlarında değişiklik yapıyor. Yani

h1 {
font-weight:bold;
font-size:1.5em;
margin-bottom:0;
margin-top:1px; }

Böyle değilde

h1{font-weight:700;font-size:1.5em;margin-bottom:0;margin-top:1px}

böyle sıkıştırıyor. Bold u 700 e çeviriyor. 0.5 i .5 e çeviriyor gibi.

Normal css kodlarını nasıl ekliyorsan bunları da öyle ekleyebilirsin.

Ve sadece css dosyalarını sıkıştırıyor html kodlarını sıkıştırmıyor.

Sıkışmamış CSS Kodu


   body {
                font-family: arial, sans-serif;
                font-size: 0.8em;
                height:100%;
            }
            body * {
                font-size: 100%;
            }
            h1 { 
                font-weight:bold;
                font-size:1.5em;
                margin-bottom:0;
                margin-top:1px; }
            
            h2 { 
                font-weight:bold;
                font-size:1.2em;
                margin-bottom:0; 
                color:#707070;
                margin-top:1px; }

            h3 { 
                font-weight:bold;
                font-size:1.2em;
                margin-bottom:0; 
                color:#000;
                margin-top:1px; }
                
            td, th {
                font-family: arial, sans-serif;
                font-size: 0.9em;
            }            
            
            .header {
                font-weight: bold;
                font-size: 1.1em;
            }
            
            p.sml { 
                font-size:0.8em;
                margin-top:0; 
            }
            
            .data {
                border-collapse:collapse;
                border:1px solid #b0b0b0;
                margin-top:3px;
                width:100%;
                padding:5em;
            }

            .data td {
                border-bottom:1px solid #b0b0b0;
                text-align:left;
                padding:3px;
            }
            
            .sortup {
                background-position: right center;
                background-image: url(http://www.google.com/webmasters/sitemaps/images/sortup.gif);
                background-repeat: no-repeat;
                font-style:italic;
                white-space:pre; }
                
            .sortdown {
                background-position: right center;
                background-image: url(http://www.google.com/webmasters/sitemaps/images/sortdown.gif);
                background-repeat: no-repeat;
                font-style:italic;
                white-space:pre; }
            
            table.copyright {
                width:100%;
                border-top:1px solid #ddad08;
                margin-top:1em;
                text-align:center;
                padding-top:1em;
                vertical-align:top; }
                
            .copyright {
                color: #6F6F6F;
                font-size: 0.8em;
            }
Sıkıştırılmış Css Kodu

body{font-family:arial, sans-serif;font-size:.8em;height:100%}
body *{font-size:100%}
h1{font-weight:700;font-size:1.5em;margin-bottom:0;margin-top:1px}
h2{font-weight:700;font-size:1.2em;margin-bottom:0;color:#707070;margin-top:1px}
h3{font-weight:700;font-size:1.2em;margin-bottom:0;color:#000;margin-top:1px}
td,th{font-family:arial, sans-serif;font-size:.9em}
.header{font-weight:700;font-size:1.1em}
p.sml{font-size:.8em;margin-top:0}
.data{border-collapse:collapse;border:1px solid #b0b0b0;margin-top:3px;width:100%;padding:5em}
.data td{border-bottom:1px solid #b0b0b0;text-align:left;padding:3px}
.sortup{background-position:right center;background-image:url(http://www.google.com/webmasters/sitemaps/images/sortup.gif);background-repeat:no-repeat;font-style:italic;white-space:pre}
.sortdown{background-position:right center;background-image:url(http://www.google.com/webmasters/sitemaps/images/sortdown.gif);background-repeat:no-repeat;font-style:italic;white-space:pre}
table.copyright{width:100%;border-top:1px solid #ddad08;margin-top:1em;text-align:center;padding-top:1em;vertical-align:top}
.copyright{color:#6F6F6F;font-size:.8em}
Toplamda 438 byte sıkıştırılmış.