I'm working on a legacy application created with HTML 4, The application is working correctly on Internet Explorer, I want to run the application on Edge chromium and chrome, but I get many style problems. There is some css styles, but to align elements we use tables and HTML attributes like align
.
I tried to check if the HTML and CSS are valid using google chrome extension called Validity but I get those errors
the "align" attribute on the "td" element is obsolete. use css instead
the "bgcolor" attribute on the "td" element is obsolete. use css instead
the "width" attribute on the "table" element is obsolete. use css instead
but those attributes are working correctly with HTML 4 in the application, so why those errors ? Is there any tools to check if all the HTML 4 attributes and css are valid/correct or not ?