How to debug HTML/CSS issues using Safari in MAC OS?

The Safari web browser has a tool similar to Firefox's Firebug, which can be used to analyze and debug the HTML and CSS code of your pages. The tool is called Web Inspector and if you have enabled the Debug menu in your Safari browser, you should already have Web Inspector enabled in your Safari.

If you don't have it yet, you should enable it by following these steps:

  • close Safari;
  • start Terminal;
  • once in Terminal, type:

defaults write com.apple.Safari WebKitDeveloperExtras -bool true

      and press Enter;

To use Web Inspector, start the Safari browser and control-click on an element on the web page. In the contextual menu you will see a new entry called Inspect Element. Click it and it will open the Web Inspector tool.

If you wish to disable Web Inspector, you should close Safari, open Terminal and enter this command:

defaults write com.apple.Safari WebKitDeveloperExtras -bool false

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to load an SSH key in Transmit

In order to load an SSH key in Transmit, the key has to be in either PEM or PuTTY (.ppk) format....

How to Connect to Telnet via Mac Terminal

To connect to a server on its Telnet port via your Mac's Terminal application, you need to follow...

Apple/Mac client-side website checks

Prior to posting a website down ticket from your Help Desk it is recommended to test the...

How to log in to my Hostlantern shared account via SSH in Mac OS?

First you should generate an SSH key pair on your Mac OS. Alternatively, you can generate the...

How to log in to my Cloud hosting/VDS via SSH in Mac OS?

The following instructions are valid only for Hostlantern customers. If you are not a Hostlantern...