is there an existing plugin/app/program/script/whatever that analyzes and counts the css selectors of a file? i want to check if the reason my css file is not working in ie is because my selector count is over 4095(which im pretty sure is not)

thanks!

p.s. plus points if there's a haml/sass/compass solution

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Loop through each document stylesheet, and for each stylesheet, count the number of css rules.

In pseudocode,

totalRules = 0
for each document.styleSheets as sheet
    totalRules += sheet.cssRules.length;
link|improve this answer
btw this would be in JavaScript, and the following links (1) (2) would be helpful. – Anurag Mar 8 '11 at 5:00
thanks! i didn't even need to code a single line as i could run it in the console! – corroded Mar 8 '11 at 5:20
feedback

There is this bookmarklet that tells you the number of used CSS rules out of the total CSS rules (which you are interested in).

CSS Crunch

link|improve this answer
feedback

This will do inline CSS...

var selectors = 0;

$('style').each(function() {

   var styles = $(this).html();

   // Strip comments
   styles = styles.replace(/\/\*.+?\*\//sg, ''); 

   var matches = styles.match(/\{[\s.]*\}/g);

   selectors += matches.length;

});

jsFiddle.

link|improve this answer
not looking for inline, i have a separate stylesheet – corroded Mar 8 '11 at 5:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.