Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> ul { padding-left: 2em; } ul li { list-style-type: none; padding-left: 2em; color: #f00; background: url('/build/images/arrow-right.4aad274a.png') no-repeat center left; } ul li span { display: block; margin-left: -0.5em; color: #000; } </style> </head> <body> <ul> <li>some text</li> <li> <span>Text 1</span> </li> <li> <span>Text 2</span> </li> <li> <span>Text 3</span> </li> </ul> </body> </html>