/
How can we make a CSS debug tool
How can we make a CSS debug tool
Why is this useful? Well if we are going to make our websites and applications simpler we need to have good visibility on our legacy. This approach is extremely effective in quickly visualizing grid layouts which a very simple way to managing positioning in modern browsers. See laying out a page with grid.
This works quite well to visualize the position rules on a webpage even if is not your own website:
function DEBUGborders(){
console.log("Borders on");
var Element = document.createElement('style');
document.head.appendChild(Element);
var Sheet = Element.sheet;
Sheet.insertRule("*{outline: 1px red solid;}", 0);
} DEBUGborders()
Copy pasting that code into the console of your browser will give you red outlines of the borders of every CSS object in your browser.
For kicks I have attached a screen shot of what happens to this page when you apply this trick:
, multiple selections available,
Related content
CSS Borders - Useful for debugging
CSS Borders - Useful for debugging
More like this
Using the Chrome Tools for CSS
Using the Chrome Tools for CSS
More like this
Styling in developer tools
Styling in developer tools
More like this
Playing around with CSS and Javascript showing the power of the console.
Playing around with CSS and Javascript showing the power of the console.
Read with this
How can we find simplicity in CSS?
How can we find simplicity in CSS?
More like this
How do we migrate from legacy complexity to a simple future in CSS?
How do we migrate from legacy complexity to a simple future in CSS?
More like this