CSS
CSS 列表
同样在所有的浏览器,下面的例子会显示的图像标记
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> ul { list-style-type: none; padding: 0px; margin: 0px; } ul li { background-image: url("/examples/sqpurple.gif"); background-repeat: no-repeat; background-position: 0px 5px; padding-left: 14px; } </style> </head> <body> <ul> <li>Coffee</li> <li>Tea</li> <li>Coca Cola</li> </ul> </body> </html>
运行结果:
点击运行 »