Hopefully you never have to do this, but if e.g. you build a lot of stuff on top of a library like Bootstrap and then concatenate all your CSS for shipping you might find that you hit IE<10's 4095-selectors-per-sheet limit.
To guard against this we added the following to our Cucumber tests which run in our CI build.
This works with Poltergeist which is a Capybara adapter that wraps PhantomJS.
It's arguably an abuse of Cucumber because we're definitely not testing behaviour here, but it's handy to have non-functional stuff like CSS bloat tracked in a continuous build, especially when the consequences include dropping styles on the floor.
If you're building a Rails app, skip this and use something like css_splitter to circumvent the issue.
If you concatenate CSS as a build step, not at runtime, maybe try bless.