Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> ul:nth-of-type(1) { list-style: lower-greek; } ul:nth-of-type(2) { list-style: lower-latin; } </style> </head> <body> <h2>Beispiel für die Eigenschaft list-style</h2> <ul> <li>Element</li> <li>Element</li> <li>Element</li> </ul> <ul> <li>Element</li> <li>Element</li> <li>Element</li> </ul> </body> </html>