<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>list-style-image</title> <style> /*参考:https://www.w3school.com.cn/cssref/pr_list-style-image.asp 知识点: list-style-image 属性使用图像来替换列表项的标记。*/ ul { list-style-image: url('https://www.w3school.com.cn/i/eg_arrow.gif') } </style> </head> <body> <ul> <li>咖啡</li> <li>茶</li> <li>可口可乐</li> </ul> </body> </html>
来源:51CTO
作者:学无止境慢慢来
链接:https://blog.csdn.net/weixin_42193179/article/details/100764377