代碼
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>洗發(fā) 護發(fā) 沐浴 身體乳 手足護理
護手霜 纖體 身體精油 頸部護理
個人護理 衛(wèi)生用品 脫毛 </dd>
<dt class="e">禮盒套裝</dt>
<dd>護膚套裝 身體護理套裝 彩妝套裝
旅行裝 香水套裝 男士套裝 </dd>
<dt class="f">美容工具</dt>
<dd>護膚 彩妝 美發(fā) 美體 美甲
美容儀器 其他美容工具 </dd>
<dt class="g">母嬰專區(qū)</dt>
<dd>奶粉 尿褲濕巾 母嬰洗護</dd>
<dt class="h">男士專區(qū)</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;}
效果