DreamPirates logo DreamPirates
entertainment

One of my favorite CLI tools is Wallace. Once installed, type wallac CSS Stats

- By tacikemem
Publish Date : 2021-04-20 18:08:31
One of my favorite CLI tools is Wallace. Once installed, type wallac CSS Stats

One of my favorite CLI tools is Wallace. Once installed, type wallac5

Generally, code auditing involves analyzing code to find bugs or other irregularities, like possible performance issues. For most programming languages, the concept of auditing code is relatively straightforward: it works or it doesn’t. But CSS is a specific language where errors are mostly ignored by browsers. Then there’s the fact that you could achieve the same style in many different ways. This makes CSS a little tricky to audit, to say the least.

https://yourdressage.org/advert/full-watch-sexify-season-1-episode-1-online-free/
https://yourdressage.org/advert/full-watch-sexify-season-1-episode-1-online-free-2/
https://yourdressage.org/advert/full-episode-sexify-season-1-episode-1-online-hd-free/
https://yourdressage.org/advert/watch-sexify-season-1-episode-1-full-movie-online-free-123movies/
https://yourdressage.org/advert/watch-sexify-season-1-episode-1-online-full-putlockers/

Finding those errors might be prevented by using an extension for your favorite code editor or setting up a linter or code checker. But that is not what I want to show here, and that is not enough. We could still use too many colors, typographic definitions, or z-indexes, all of which could lead to a messy, unmaintainable, unstable CSS codebase.

To truly audit CSS, we would need to dig deeper and find places that are not considered best practices. To find those places, we could use the following tools.
Browser DevTools

https://yourdressage.org/advert/full-watch-cruel-summer-season-1-episode-1-online-free/
https://yourdressage.org/advert/full-episode-cruel-summer-season-1-episode-1-online-hd-free/
https://yourdressage.org/advert/watch-cruel-summer-season-1-episode-1-full-movie-online-free-123movies/
https://yourdressage.org/advert/watch-cruel-summer-season-1-episode-1-online-full-putlockers/

Let’s take a look at the Chrome DevTools tools for CSS auditing. I’m using Brave here, which is Chromium-based. You might also want to check out this article by Umar Hansa, who compiled a whole bunch of great DevTool features that released in 2020.

If you like inspecting CSS code manually, there is the Inspect tool. Using that, we could see the CSS code applied to a specific element. Using the “Inspect arrow” we could even see additional details about colors, fonts, size and accessibility.
Grid and Flex inspector

https://yourdressage.org/advert/full-watch-rutherford-falls-season-1-episode-1-online-free/
https://yourdressage.org/advert/full-episode-rutherford-falls-season-1-episode-1-online-hd-free/
https://yourdressage.org/advert/watch-rutherford-falls-season-1-episode-1-full-movie-online-free-123movies/
https://yourdressage.org/advert/watch-rutherford-falls-season-1-episode-1-online-full-putlockers/


There’s a lot of practical details in the DevTools interface, but my favorite is the Grid and Flex inspector. To enable them, go to the Settings (a little gear icon at the top right of the DevTools), click on Experiments, then enable CSS Grid and Flexbox debugging features. Although this tool is mainly used for debugging layout issues, I sometimes use it to quickly determine if CSS Grid or Flexbox is even used on the page at all.
CSS Overview

Inspecting CSS is pretty basic, and everything needs to be done manually. Let’s look at some more advanced DevTools features.

CSS Overview is one of them. To enable CSS Overview tool, go to the Settings, click on Experiments, and enable CSS Overview option. To open the CSS Overview panel, you could use the CMD+Shift+P shortcut, type “css overview,” then select “Show CSS Overview.” This tool summarizes CSS properties like colors, fonts, contrast issues, unused declarations, and media queries. I usually use this tool to get the “feel” of how good or poor CSS code is. For example, if there are “50 shades of gray” or too many typographic definitions, that means that the style guide wasn’t respected, or one might not even exist.
Note that this tool summarizes the style applied to a specific page, not the whole file.
Coverage panel

The Coverage tool shows the amount and the percentage of code used on the page. To view it, use the CMD+Shift+P shortcut, type “coverage,” select Show Coverage, and click on the “refresh” icon.

You could filter only CSS files by typing “.css” in the URL filter input. I usually use this tool to understand the delivery technique of the site. For example, if I see that the coverage is pretty high, I could assume that the CSS file is generated for each page separately. It may not be critical data to know, but sometimes it helps to understand the caching strategy.
Rendering panel

https://paiza.io/projects/oLyEp06LBbSZy8uIgDfubg
https://www.onlinegdb.com/BylP7Cth8_
https://jsfiddle.net/bnj98xof/
https://dikovo7166.medium.com/covid-19-us-to-advise-against-travel-to-80-of-countries-7205bba5fb81
https://www.posts123.com/post/1630464/covid-19-us-to-advise-against-travel-to-80-of-countries
https://myanimelist.net/blog/embebalap

The Rendering panel is another useful tool. To open the Rendering panel, use CMD+Shift+P again, type “rendering” this time, and choose the “Show Rendering” option. This tool has many options, but my favorite ones are:

    Paint flashing — shows green rectangles when a repaint event happens. I use it to identify areas that take too much time for rendering.
    Layout Shift Regions — shows blue rectangles when the layout shift occurs. To make the most of these options, I usually set the “Slow 3G” preset under the “Network” tab. I sometimes record my screen and then slow down the video to find the layout shifts.
    Frame Rendering Stats — shows the real-time usage of GPU and frames. This tool is handy when identifying heavy animations and scrolling issues.

These tools are something that the regular audit doesn’t imply, but I find it essential to understand if the CSS code is performant and doesn’t drain a device’s energy.

Other options may be more beneficial for debugging issues, like emulation and disabling of various features, forcing the prefers-color-scheme feature or print media type, and disabling local fonts.
Performance Monitor

https://tacikemem.cookpad-blog.jp/articles/589558
https://cox.tribe.so/post/covid-19-us-to-advise-against-travel-to-80-of-countries-607f1464df10f4ee0f1b7fc2
https://telegra.ph/Covid-19-US-to-advise-against-travel-to-80-of-countries-04-20-2

Another tool for auditing the performance CSS code is the Performance Monitor. To enable it, use CMD+Shift+P again, type “performance monitor,” and select the Show Performance Monitor option. I usually use this tool to see how many recalculations and layouts are triggered when interacting with the page, or when the animation occurs.
Perfomance panel

The Performance panel shows a detailed view of all browser events during page load. To enable the Performance tool, do CMD+Shift+P, type “performance,” select Show Performance, then click the “reload” icon. I usually enable the “Screenshots” and “Web Vitals” options. The most interesting metrics to me are First Paint, First Contentful Paint, Layout Shifts, and Largest Contentful Paint. There is also a pie chart showing the Painting and Rendering time.

DevTools might not be considered a classical auditing tool, but it helps us understand which CSS features are used, the efficiency of the code, and how it performs — all of which are key things to audit.
Online tools

DevTools is just one tool that is packed with a lot of features. But there are other available tools we can use to audit CSS.
Specificity Visualizer

Specificity Visualizer shows the specificity of CSS selectors in the codebase. Simply visit the site and paste in the CSS.

The main chart displays the specificity in relation to the location in the stylesheet. The other two charts show the usage of specificities. I often use this site to find “bad” selectors. For example, if I see many specificities marked as red, I could easily conclude that the code could be better. It is helpful to save the screenshots for reference as you work to improve things.
CSS Specificity Graph Generator

CSS Specificity Graph Generator is a similar tool for visualizing specificity. It shows a slightly different chart that might help you see how your CSS selectors are organized by specificity. As it says on the tool’s page, “spikes are bad, and the general trend should be towards higher specificity later in the stylesheet.” It would be interesting to discuss that further, but it’s out of scope for this article. However, Harry Roberts did write about it extensively in his article “The Specificity Graph” which is worth checking out.

CSS Stats is another tool that provides analytics and visualizations for your stylesheets. In fact, Robin wrote about it a little while back and showed how he used it to audit the stylesheet at his job.

All you need to do is to enter the URL of the site and hit Enter. The information is segmented into meaningful sections, from declaration count to colors, typography, z-indexes, specificity, and more. Again, you might want to store the screenshots for later reference.
Project Wallace

Project Wallace is made by Bart Veneman, who already introduced the project here on CSS-Tricks. The power of Project Wallace is that it can compare and visualize changes based on imports. That means you could see previous states of your CSS code base and see how your code changes between states. I find this feature quite useful, especially when you want to convince someone that the code is improved. The tool is free for a single project and offers paid plans for more projects.
CLI tools

In addition to DevTools and online tools, there are command line interface (CLI) tools that can help audit CSS.
Wallace

One of my favorite CLI tools is Wallace. Once installed, type wallace and then the site name. The output shows everything you need to know about the CSS code for the site. My favorite things to look at are the number of times !important is used, as well as how many IDs are in the code. Another neat piece of information is the top specificity number and how many selectors use it. These might be red flags for “bad” code.

What I like the most about this tool is that it extracts all of the CSS code from the site, not only external files, but also inline code as well. That is why the report from CSS Stats and Wallace mismatch.
csscss

The csscss CLI tool shows which rules share the same declarations. This is useful for identifying duplicated code and opportunities to reduce the amount of code that’s written. I would think twice before doing that as it might not be worthwhile, especially with today’s caching mechanisms. It is worth mentioning that csscss requires Ruby.
Other useful tools



Category : entertainment

Developer Beats Grand Theft Auto DMCA Claim

Developer Beats Grand Theft Auto DMCA Claim

- After a fan disputed the takedown of Grand Theft Auto 3 and Vice City reversed source code, the code for re3 and reVC is restored online.


Having Trouble Picking A Cell Phone? These Tips Can Help!

Having Trouble Picking A Cell Phone? These Tips Can Help!

- harder to make a deal and convince someone you deserve a better price on a vehicle if you are draped in expensive clothing. While you want to appear neat and ct


Nier Replicant: Lighthouse Lady Choice Guide

Nier Replicant: Lighthouse Lady Choice Guide

- Nier Replicant players can find out how to complete the Lighthouse Lady questline and what impact the choices they make have in the game.


Ascent Infinite Realm Game

Ascent Infinite Realm Game

- Eylon is a mystical realm that blends several MMORPG trends into a streamlined gaming experience for both new and veteran fans.