How do you debug Display / CSS issues in multiple browsers?

Let's say I need to develop a website for multiple browsers. the main ones are Firefox, Safari, IE, Opera, Chrome

How do you debug display issues? Firefox has Firebug, which is great. There is also Firebug Lite for other browsers, but it is not fully functional - it does not update in real time. For example, if I suspect jQuery is slowing it down (adding classes, etc.), how would I know?

+3
source share
5 answers

, , , . .

, jQuery, outline , , .

.class1 {
  outline: 1px solid blue;
}
.class2 {
  outline: 1px solid red;
}
+6

IE8

0

For cross-browser debugging, you can use Firebug Lite . This is similar to Firebug, but as an external JavaScript library and tested in FF, Opera Safari and even in good IE (as stated in the web page).

0
source

Check out my new tool to view the layout of any item on your page, luring it in - CROSS BROWSER!

Visualizer HTML Document - GitHub

0
source

Source: https://habr.com/ru/post/1713826/


All Articles