Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

7 Answers

up vote 6 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;
share|improve this answer
1  
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
7  
Note that this code counts the number of rules, not the number of selectors. The 4095 number in IE applies to selectors, not rules. – Philip Walton Jul 18 '12 at 21:27

The following snippet can be run in the Firebug console in Firefox to count the total number of CSS selectors (not just CSS rules) and check whether it reaches the limit of 4095 selectors per stylesheet:

var
  styleSheets = document.styleSheets,
  totalStyleSheets = styleSheets.length;

for (var j = 0; j < totalStyleSheets; j++){
  var
    styleSheet = styleSheets[j],
    rules = styleSheet.cssRules,
    totalRulesInStylesheet = rules.length,
    totalSelectorsInStylesheet = 0;

  for (var i = 0; i < totalRulesInStylesheet; i++) {
    if (rules[i].selectorText){
      totalSelectorsInStylesheet += rules[i].selectorText.split(',').length;
    }
  }
  console.log("Stylesheet: "+styleSheet.href);
  console.log("Total rules: "+totalRulesInStylesheet);
  console.log("Total selectors: "+totalSelectorsInStylesheet);
}
share|improve this answer
1  
Thanks for posting an answer! While a code snippet could answer the question it's still great to add some addition information around, like explain, etc .. – j0k Sep 26 '12 at 7:59
Ok. My english is very poor, but I will try ) – jetli13 Nov 22 '12 at 12:34
Really useful, thanks! – sowasred2012 Jan 11 at 13:11
@jetli13 My Firebug says Error: The operation is insecure. "rules = styleSheet.cssRules,". Any ideas? FB 1.11.2 on FF 20.0.1 – RaphaelDDL Apr 30 at 21:08

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

share|improve this answer

My project, Bless CSS, could be what you're looking for. It will analyze files and split them at the optimum point based on the selector limit.

It's also built in to CodeKit.

share|improve this answer

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.

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

Search & replace "{" by "{" in your CSS file. Most editors wil tell how many replacements you’ve done…

share|improve this answer
1  
This will only count the number of rules, not the number of selectors. There can be multiple selectors per rule, e.g. h1, h2, h3 { margin: 0; } – Philip Walton Jul 18 '12 at 23:24

Easiest way to do this that I found: http://snippet.bevey.com/css/selectorCount.php

I checked that it searches for selectors rather than rules, and it does.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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