<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>京东边框</title> <style> body { font-family: Arial, sans-serif; } ul { list-style: none; padding: 0; margin: 0; width: 212px; border: 1px solid #000; } li { height: 30px; line-height: 30px; background-color: #f00; color: #fff; font-size: 14px; text-align: center; cursor: pointer; } li h3 { margin: 0; } #top { height: 45px; line-height: 45px; background-color: rgb(220, 44, 44); } </style> </head> <body> <nav> <ul> <li id="top"><h3>全部商品分类</h3></li> <li>家用电器</li> <li>手机</li> <li>电脑办公</li> <li>美妆个护</li> <li>服饰鞋包</li> <li>母婴玩具</li> <li>图书音像</li> <li>男装女装</li> <li>内衣配饰</li> <li>汽车用品</li> </ul> </nav> </body> </html>
|