Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>CSS list-style Shorthand Property</title> <style> ul { list-style: square inside url("/examples/images/bullet.png"); background: #9ddfef; } ul li { background: #ededed; margin: 5px 0; padding: 5px; } </style> </head> <body> <h2>The <code>list-style</code> Shorthand Property</h2> <ul> <li>List Item 1</li> <li>List Item 2</li> <li>List Item 3</li> </ul> </body> </html>