Tagged Questions
115
votes
20answers
22k views
Any recommendations for a CSS minifier?
Any recommendations for a CSS minifier?
I’ll be rooting around Google and trying some out, but I suspected that the smart, proficient and curiously handsome StackOverflow community might have already ...
8
votes
11answers
459 views
Optimizing javascript and css requests
I need to optimize the loading speed of several existing websites. One of the issues that I have is the amount of requests per page. The websites have 7 or more different types of pages which should ...
6
votes
3answers
237 views
Tool for HTML whole-page minification?
I have a fairly stand-alone page, and I'd like to make it as small as possible: inline minimized Javascript and minimized CSS, and then minimize the HTML itself. There's tools for each of these ...
5
votes
3answers
131 views
Are CSS Minifiers that combine elements destructive?
I found this CSS minifier (http://www.lotterypost.com/css-compress.aspx). There is a section at the bottom of that page labelled "What does the CSS Compressor purposely NOT do?" There are four ...
5
votes
4answers
347 views
Best practices - Only download CSS you need, or use a minification process?
In the context of improving overall site performance (downloading and rendering speed) there appears to be a contradiction between the following two best practices:
Only bring down the CSS that you ...
5
votes
2answers
231 views
Supplying non-minified CSS/javascript on demand
Minfying your stylesheets and script files improves your site's performance.
However, sometimes you might want to make the non-minified versions of the files available - perhaps to comply with the ...
4
votes
4answers
149 views
Are there libraries for packing and minifying multiple CSS and JS files into one file each?
According to O'Reilly's High Performance Web Sites (pages 15-16), it's highly recommended to make as few HTTP requests as is possible for high-performance. Thus, is there a library for combining ...
4
votes
5answers
252 views
Minifying CSS, JS, and HTML - together
Minifying JS and CSS is quite common. The benefits of minifying JS are much greater that those seen with CSS because with CSS you can't rename elements - and same goes for HTML. But what if all 3 were ...
3
votes
5answers
453 views
Alternatives to Cassette?
Andrew Davey created a very nice library to allow on the fly minification and concatenation of js/css files to ASP.NET MVC projects. However, I'm using WebForms with .NET 3.5 and I'm thinking about ...
2
votes
4answers
152 views
How do I automate Javascript and CSS minification on Google App Engine?
I couldn't find any proper solution for automating Google App Engine CSS and Javascript minification.
1
vote
3answers
59 views
Browser add-ons for switching between minified and regular .js or .css
Is there a browser add-on (for firefox or chrome) that would easily let me open a non minified version of a script file?
eg, a production website would load script.min.js, but usually the script.js ...
1
vote
2answers
102 views
What Are The Cons (Ill-Effects) Of HTML, JavaScript and CSS Minification?
First, I see that Google suggests minifying everything - - HTML, JS and CSS to increase performance.
But I doubt it does only good, and no bad; especially because many of the popular websites haven't ...
1
vote
3answers
217 views
Is there a CSS minifier than can resolve import statements?
Is there a CSS minifier tool that can resolve @import statements?
I'd like to be able to load multiple CSS files on my local machine but have them all resolved into one file when the website gets ...
1
vote
6answers
285 views
Minifying and Obsfucating CSS similar to Javascript
I know there are several tools out there that are capable of obfuscating JavaScript files such as by turning a simple functions like:
function testing()
{
var testing;
var testing2;
...
1
vote
3answers
157 views
When I minify css or js, why isn't it all on one line?
I understand that minifying tries to reduce file size by removing whitespace characters. Sometimes things end up on one line, but more often than not, there are multiple lines. I noticed that line ...
0
votes
3answers
132 views
How to disable Javascript/CSS minification in ASP.NET MVC 4
I am just trying out ASP.NET MVC 4 but I can't figure out how to disable Javascript/CSS minification feature. Especially for development environment this will help greatly on debugging. I would ...
0
votes
1answer
87 views
sass --watch with automatic minify?
Is there a way to run:
sass --watch a.scss:a.css
but have a.css end up being minified?
How would I avoid having to run a separate minification step as I compile my stylesheet?
0
votes
2answers
297 views
How to Minify CSS to its Absolute Minimalistic Essence?
Dear folks, staring at the minified CSS I put together so proudly the other night, I desparately tried to remove more chars here or there, like those wasted whitespace: " " meanwhile the more I ...