IhsanNet adlı üyeden alıntı: mesajı görüntüle
Ek olarak php ile kodları sıkıştırabilirsin.
Manuel olarakda notepad ++ Ctrl + A, Ctrl + J

Bu işlemden sonra mozillada kaynak kodları tek satır olarak, diger tarayıcılarda birbirine yapışmış olarak görünür css alsalar bile düzenlemeye gelince uğraşamazlar pes ederler.

kolay gelsin.

http://www.php.net/manual/fr/function.ob-start.php

<?php

function sanitize_output($buffer)
{
    $search = array(
        '/\>[^\S ]+/s', //strip whitespaces after tags, except space
        '/[^\S ]+\</s', //strip whitespaces before tags, except space
        '/(\s)+/s'  // shorten multiple whitespace sequences
        );
    $replace = array(
        '>',
        '<',
        '\\1'
        );
  $buffer = preg_replace($search, $replace, $buffer);
    return $buffer;
}

ob_start("sanitize_output");

?>
http://www.codebeautifier.com/