Redwoodev

What tool can i use to debug my css code?

Asked by Redwoodev 3 years ago css code tools debug


Exclusivemedia
3

Most Helpful

Most Helpful

 
Here's a pretty easy snippet that places a a colored outline around the border of every element in your CSS code. It makes it easier to debug your code by adding visual representation of errors.

  1. * { outline: 2px dotted red }
  2. * * { outline: 2px dotted green }
  3. * * * { outline: 2px dotted orange }
  4. * * * * { outline: 2px dotted blue }
  5. * * * * * { outline: 1px solid red }
  6. * * * * * * { outline: 1px solid green }
  7. * * * * * * * { outline: 1px solid orange }
  8. * * * * * * * * { outline: 1px solid blue }

Source

by Exclusivemedia 3 years ago

Ben G
2
 
Firebug extension for Firefox is a pretty handy tool for debugging.

by Ben G 3 years ago

Paul Burd
1
 
The Web Developer Firefox add-on is great for this. It allows to to outline various elements without editing your CSS.

by Paul Burd 3 years ago

Darrin
1
 
I second the use of Firebug for firefox addons.mozilla.org If you use a Mac CSSEdit is a good mac app for this

by Darrin 3 years ago

Ld
0
 
'Inspect Element' from context menu in Safari need to check 'Show Develop menu in menu bar' option in preferences.

by Ld 2 years ago

Trudesign
0
 
Im all about web developer and firebug. The firebug console picks up logs as well so if you are running mashlets you can get the readout right in Firebug, makes it easy to find where issues are in web apps.

by Trudesign 2 years ago

Christine D.
0
 
Check out the w3c.org css validator.

by Christine D. 3 years ago

Mohamed Aslam Najeebdeen
0
 
Web developer and Firebug addons for Firefox

by Mohamed Aslam N...  3 years ago

Answer this question

What tool can i use to debug my css code?

0 errors found:

 
0