Detect unused CSS rules [duplicate]
I am developing a website.
I use ready template.this template contains many css files with many css rules. But 开发者_如何转开发I have few pages and I am sure I didn't use all selectors. Is there any tool exist for scanning project HTML files and finding unused css rules and remove them ? I found this question that says :Dust-me Selectors is a firefox plugin that finds unused selectors.
But its not compatible with FF6 and seems it just review current viewing page and not scans whole website files.
You can get a general idea with chrome's developer tools.
- Open the page in Chrome
- Open developer tools (Ctrl+Shift+I)
- Open the Audits tab
- click run
- expand the "Remove unused CSS rules" item to view a list of style sheets that contain unused style rules.
This doesn't list them out oh wait... it does... XD
精彩评论