This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
Specification: http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html Multipage: http://www.whatwg.org/C#foreign-elements Complete: http://www.whatwg.org/c#foreign-elements Comment: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <title>Unordered List Example</title> </head> <body> <ul> <li>Unordered lists <ul> <li>can be nested. <ul> <li>Bullet changes on nesting.</li> </ul> </li> </ul> </li> </ul> <p>Bullets can be controlled with the <b>type</b> attribute. <b>Type</b> can be set for the list as a whole or item by item.</p> <ul type="square"> <li>First item bullet shape set by ul</li> <li type="disc">Disc item</li> <li type="circle">Circle item</li> <li type="square">Square item</li> </ul> </body> </html> Posted from: 84.235.75.82 User agent: Mozilla/5.0 (Windows NT 6.0; rv:12.0) Gecko/20100101 Firefox/12.0