How can I effectively clean up styles in a large web site?

后端 未结 5 2045
我寻月下人不归
我寻月下人不归 2020-12-01 02:03

Our web site has been under a constant development for a better part of the last five years. As it happens, pretty much all the styles for the site are in one big CSS file.

相关标签:
5条回答
  • 2020-12-01 02:36

    Short of going through each .tpl file and searching the file for the selectors manually, I don't see any other way.

    You could of course use Dust-Me selectors, but you'd still have to go through each page that uses the .tpl files (not each url as I know that many of them will be duplicates).

    Sounds like a big job! I had to do it once before and I did exactly that, took me a week.


    Another tool is a Firebug plugin called CSS Usage. As far as I read it can work across multiple pages but might break if used site-wide. Give it a go.


    Triumph! Check out the Unused CSS online tool. Type your index url into the field and voila, a few minutees later a list of all the used selectors :) I know you want the unused ones, but then the only work is finding the unused ones in the file (ctrl+f) and removing them :)

    Make sure to use the 2nd option, they'll email you the results of the crawl of your entire webpage. Might take up to half an hour, but that's far better than a week. Take some coffee :)

    Just tested it, works a treat :)

    0 讨论(0)
  • 2020-12-01 02:36

    You could use Dust-Me Selectors plugin for FireFox to find unused styles:

    http://www.sitepoint.com/dustmeselectors/

    If you have a sitemap you could use that to let the plugin crawl your site:

    The spider dialog has all the controls for performing a site-wide spider operation. Enter the URL of either a Sitemap XML file, or an HTML sitemap, and the program will read that file and extract all its links. It will then load each of those pages in turn and perform a cumulative Find operation on each one.

    0 讨论(0)
  • 2020-12-01 03:00

    I see there's not a good answer yet. I have tried the "Unused CSS online tool" and seems to work ok for public sites. The problem is if you have a CSS to show your public website + an intranet (for example: wordpress site + login for registered users). The intranet pages woun't be tracked and you will lose your css styles.

    My next try will be using gulp + uncss: https://github.com/ben-eb/gulp-uncss

    You have to define all the urls of your site (external and internal) and (maybe; not sure) if you are running the site with user + password on your browser, gulp+uncss can go inside the internal url's.

    Update: I see unused-css online tool has a login solution!

    0 讨论(0)
  • 2020-12-01 03:02

    Additionally, there are many sites that will search for these for you. Like this one: http://unused-css.com/ I don't know how they measure up to Dust-Me Selectors, but I know that Dust-Me selectors isn't compatible with Firefox 8.0.

    0 讨论(0)
  • 2020-12-01 03:03

    I had to do this about 3 years ago on a rather large classic ASP web application.

    I took the approach that there are only a finite number of styled items on each page and started by identifying these. For example, I went through the main pages and identified that the majority of labels were bold and dark blue and that all buttons are the same width (for example).

    Once I'd done that, I spoke to the team and we decided that anything that didn't conform to these rules I'd identified should conform, so I wrote a stylesheet based on this assumption.

    We ended up with about 30 styles to apply to several hundred pages. Several regular-expression-find-and-replaces later (we were fortunate that the original development had used reasonably well structured HTML) we had something usable that just needed the odd tweaking.

    The key points are:

    1. Aim for uniformity across the site. In other words, don't assume that the resultant site will look exactly the same as the original, but aim for it to look the same as itself (uniform) from page to page
    2. Tackle the obvious styles first (labels / buttons / paragraph fonts / headers) and then worry about the smaller styles or the unique styles later

    You might also find that keeping unique styles (e.g. a dashboard page that has unique elements that don't appear elsewhere) in separate files to keep the size of the file down. Obviously, it depends on your site as to whether this would help.

    0 讨论(0)
提交回复
热议问题