The fastest way to find broken DIVs

I have a website that calls a lot of HTML from a third-party source. The problem is that I think they are returning the wrong code to me.

I need a quick way to find additional DIV closures, is this possible?

+4
source share
5 answers

create a page that invokes only the provided code, then confirm it - W3C Validator

+6
source

Just install the View diagram shource add for firefox and u can find the source generated in a formatted format, which is easy to find unnecessary tags ..

+4
source

You can try the following:

http://www.tormus.com/en/tools/div_checker

They will find divs that do not match you. Very useful

+4
source

While the IDE is not specifically mentioned, I highly recommend putting the code in an IDE.

In Dreamweaver CS6, you can check directly on WC3 from Dreamweaver. When an error is detected, you can go directly to this part of the code and use the IDE tools.

0
source

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


All Articles