Folks,
https://www.njexpungements.com/newLaw.php is producing three w3c error messages and I can't figure out why. Can someone here please look at it?
A.
Printable View
Folks,
https://www.njexpungements.com/newLaw.php is producing three w3c error messages and I can't figure out why. Can someone here please look at it?
A.
You have a <span> tag at line 139 and the matching </span> tag at line 183. This tag pair contains block elements which is illegal HTML. Change these to <div> & </div> respectively and the errors go away.
For an explanation of inline and block elements see here.
coothead
Wow. I would never have found that!
Thank you.
You're welcome. Spotting a </span> tag on a single line is usually a pointer to a problem.