Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> ul.a { list-style-type: circle; } ul.b { list-style-type: square; } ol.c { list-style-type: upper-roman; } ol.d { list-style-type: lower-alpha; } </style> </head> <body> <h1>Die Eigenschaft list-style-type</h1> <p>Ein Beispiel für ungeordnete Liste:</p> <ul class="a"> <li>Kaffee</li> <li>Tee</li> <li>Coca Cola</li> </ul> <ul class="b"> <li>Kaffee</li> <li>Tee</li> <li>Coca Cola</li> </ul> <p>Ein Beispiel für geordnete Liste:</p> <ol class="c"> <li>Kaffee</li> <li>Tee</li> <li>Coca Cola</li> </ol> <ol class="d"> <li>Kaffee</li> <li>Tee</li> <li>Coca Cola</li> </ol> </body> </html>