1.3 Ensure that information and structure can be separated from presentation
Success Criteria 1.3.1 Info and Relationships (A)
1.3 Adaptable: Create content that can be presented in different ways (for example simpler layout) without losing information or structure.
Success Criteria 1.3.1 Info and Relationships (A)
1.3 Adaptable: Create content that can be presented in different ways without losing information or structure.
Success Criteria 1.3.1 Info and Relationships (A)
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>