About
Minification is the process of minimizing code and markup in your web pages and script files. It’s one of the main methods used to reduce load times and bandwidth usage on websites. Minification dramatically improves site speed and accessibility, directly translating into a better user experience. It’s also beneficial to users accessing your website through a limited data plan and who would like to save on their bandwidth usage while surfing the web.
Basic Example
Unminified
body{ background-image: url("../img/Pattern.png"); background-repeat: repeat; font-family: 'Quicksand', sans-serif; }Minifyied
body{background-image:url("../img/Pattern.png");background-repeat:repeat;font-family:'Quicksand',sans-serif}
Related Tools
- Beautify CSS - Format your CSS and turn it readable.
- Minify HTML - Minify your css and increase the loading speed.
- Beautify HTML - Format your HTML and turn it better to read