Contents

[edit]

Access: [3.6.1.1]: list usage invalid <ul> (Priority 2)

[edit]

Cause:

Avoid using list markup to create formatting effects. Do not use 'ul' (unordered list) to indent text, use Cascading Style Sheets (CSS) instead.

[edit]

Example:

Good
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html lang="en">
<head>
<title>aert1.0/3.6.1</title>
</head>
<body>
<ul>
   This is only for the indent.<br/>
   And this as well.
   <ul>
       A further indent.
   </ul>
</ul>
</body>
</html>
[edit]

Solution:

[edit]

References:

Retrieved from "http://www.htmlpedia.org/wiki/Access_3.6.1.1"