CSSLint Demo
@charset "UTF-8"; @import url("booya.css") print, screen; @import "whatup.css" screen; @import "wicked.css"; /*Error*/ @charset "UTF-8"; @namespace "http://www.w3.org/1999/xhtml"; @namespace svg "http://www.w3.org/2000/svg"; /*Warning: empty ruleset */ .foo { } h1 { font-weight: bold; } /*Warning: qualified heading */ .foo h1 { font-weight: bold; } /*Warning: adjoining classes */ .foo.bar { zoom: 1; } li.inline { width: 100%; /*Warning: 100% can be problematic*/ } li.last { display: inline; padding-left: 3px !important; padding-right: 3px; border-right: 0px; } @media print { li.inline { color: black; } } @page { margin: 10%; counter-increment: page; @top-center { font-family: sans-serif; font-weight: bold; font-size: 2em; content: counter(page); } }
Run CSSLint
(You may want to keep the CSS kinda small, this could take a while.)