Book Image

Sass and Compass for Designers

By : Ben Frain
Book Image

Sass and Compass for Designers

By: Ben Frain

Overview of this book

Table of Contents (17 chapters)
Sass and Compass for Designers
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Gzip and CSS compression = victory!


First off, let's revisit something we have touched upon already: http://httparchive.org/interesting.php#bytesperpage

That link shows that as far as web assets go, CSS is almost always the smallest in terms of file size. Therefore, CSS file size optimization, in general, is a micro-optimization. That does not mean we should abandon the pursuit of economical CSS but we should be aware that optimizing a single image on the same page would probably save more in terms of file size.

Secondly, the web server that will be serving the CSS will be (or certainly should be) using gzip. This will automatically compress the files over the wire for us, shrinking them to a fraction of their original size.

Note

Gzip is the format that web servers and browsers use to zip and unzip files. When we need to compress something so it takes up less space, making it easier to transfer down the wire (typically email attachments, backup files, and the like), we zip it up. When we receive...