代码
1.HTML文件
<title>商品分类</title>
<link rel="stylesheet" type="text/css" href="商品分类.css"/>
</head>
<body>
<h1>全部分类</h1>
<dl>
<dt class="a">护肤</dt>
<dd>洁面 化妆水 喷雾 美容液 眼霜
眼部精华 眼膜 面膜 面膜贴
水洗面膜 免洗面膜 精华 精油
啫哩 凝露 乳液 面霜 日霜 晚霜 </dd>
<dt class="b">彩妆</dt>
<dd>卸妆 防晒 隔离 BB霜 粉底 粉饼
睫毛膏 眼影 唇彩 腮红 眼线笔
底妆 遮瑕 蜜粉 眉笔 美甲</dd>
<dt class="c">香氛</dt>
<dd>男香 女香 小Q装 中性香水</dd>
<dt class="d">身体护理</dt>
<dd>洗发 护发 沐浴 身体乳 手足护理
护手霜 纤体 身体精油 颈部护理
个人护理 卫生用品 脱毛 </dd>
<dt class="e">礼盒套装</dt>
<dd>护肤套装 身体护理套装 彩妆套装
旅行装 香水套装 男士套装 </dd>
<dt class="f">美容工具</dt>
<dd>护肤 彩妆 美发 美体 美甲
美容仪器 其他美容工具 </dd>
<dt class="g">母婴专区</dt>
<dd>奶粉 尿裤湿巾 母婴洗护</dd>
<dt class="h">男士专区</dt>
<dd>洁面 爽肤水 面霜 啫哩 男香
眼霜 凝胶 乳液 精华 沐浴</dd>
<dt class="i">食品保健</dt>
<dd>瘦身类 保健类 美容类 食品类</dd>
</dl>
</body>
2.CSS文件
body{
width:250px;
height:700px;
margin:0px auto;
border-style:solid;
border-color:#D5D5D5;
border-width:8px;}
h1{
width:240px;
height:30px;
margin:0px;
padding:0px;
padding-top:7px;
padding-left:12px;
color:#fff;
background-color:#000;
font-size:20px;}
dl{
margin:0px;
padding:0px;}
dt{
font-size:16px;
font-weight:bold;
text-indent:2em;
height:28px;
padding-top:10px;
border-top-style:dashed;
border-top-width:1px;
border-top-color:#5E5E5E;}
dd{
font-size:12px;
color:#5E5E5E;}
.a{
background-image:url(%E5%9B%BE%E7%89%87%E7%B4%A0%E6%9D%90/icon_01.gif);
background-repeat:no-repeat;
background-position:8px;}
.b{
background:url(%E5%9B%BE%E7%89%87%E7%B4%A0%E6%9D%90/icon_02.gif) no-repeat 8px;}
.c{
background:url(%E5%9B%BE%E7%89%87%E7%B4%A0%E6%9D%90/icon_03.gif) no-repeat 8px;}
.d{
background:url(%E5%9B%BE%E7%89%87%E7%B4%A0%E6%9D%90/icon_04.gif) no-repeat 8px;}
.e{
background:url(%E5%9B%BE%E7%89%87%E7%B4%A0%E6%9D%90/icon_05.gif) no-repeat 8px;}
.f{
background:url(%E5%9B%BE%E7%89%87%E7%B4%A0%E6%9D%90/icon_06.gif) no-repeat 8px;}
.g{
background:url(%E5%9B%BE%E7%89%87%E7%B4%A0%E6%9D%90/icon_07.gif) no-repeat 8px;}
.h{
background:url(%E5%9B%BE%E7%89%87%E7%B4%A0%E6%9D%90/icon_08.gif) no-repeat 8px;}
.i{
background:url(%E5%9B%BE%E7%89%87%E7%B4%A0%E6%9D%90/icon_09.gif) no-repeat 8px;}
效果