跑步 ”
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <head><meta http-equiv="content-security-policy" content="script-src 'none'"> <style> ul { border-left: 5px solid red; background-color: #f1f1f1; list-style-type: none; padding: 10px 20px; } </style> </head> <body> <p>Список с красной левой границей:</p> <ul> <li>Coffee</li> <li>Tea</li> <li>Coca Cola</li> </ul> </body> </html>