跑步 ”
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <head><meta http-equiv="content-security-policy" content="script-src 'none'"> <style> ul { list-style-type: none; padding: 0; border: 1px solid #ddd; } ul li { padding: 8px 16px; border-bottom: 1px solid #ddd; } ul li:last-child { border-bottom: none } </style> </head> <body> <p>Список на всю ширину с границей:</p> <ul> <li>Coffee</li> <li>Tea</li> <li>Coca Cola</li> </ul> </body> </html>