Handy CSS Debugging Snippet - 0 views
Handy CSS Debugging Snippet - 0 views
Handy CSS Debugging Snippet - 7 views
-
I use the following bit of CSS to help visualize the structure of an XHTML (or HTML) document by putting a colored outline around the border of every element. At each level in the hierarchy the color changes so you can see when "depth" changes. * { outline: 2px dotted red } * * { outline: 2px dotted green } * * * { outline: 2px dotted orange } * * * * { outline: 2px dotted blue } * * * * * { outline: 1px solid red } * * * * * * { outline: 1px solid green } * * * * * * * { outline: 1px solid orange } * * * * * * * * { outline: 1px solid blue }
‹ Previous
21 - 24 of 24
Showing 20▼ items per page