pre
element should not be used to create tabular layout.
pre
element may be misused to create tabular layout.
pre
element.
Question | Is this pre element used to create tabular layout? |
---|---|
PASS | pre is not used to create tabular layout. |
FAIL | pre is used to create tabular layout. |
pre
elements in the document.pre
elements should not be used to created tabular layout.pre
element and replace it with table
elements.pre
not used.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <html lang="en"> <head> <title>OAC Testfile - Check #154 - Positive</title> </head> <body> </body> </html>
pre
used.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <html lang="en"> <head> <title>OAC Testfile - Check #154 - Positive</title> </head> <body> <pre> dogs cats big 2 4 small 5 7 </pre> </body> </html>