<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> ul{ list-style-type: none; } ul li{ border-bottom: 1px solid #000; background-image: url(im.png); /*填充背景图片*/ background-repeat: no-repeat;/*不重复*/ background-size: 10px 10px;/*设置背景大小*/ margin-bottom: 10px; padding-bottom: 5px; background-position: 0px 5px; text-indent: 2em;/*文本缩进两个字体宽度*/ } </style> </head> <body> <ul> <li>fsdfsfsfsfsd</li> <li>fsdfsfsfsfsd</li> <li>fsdfsfsfsfsd</li> <li>fsdfsfsfsfsd</li> <li>fsdfsfsfsfsd</li> </ul> </body> </html>