CSS列表样式
首先定义一个列表
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>列表样式</title>
</head>
<body>
<div id="nav">
<h2 class="title">全部商品分类</h2>
<ul>
<li><a href="#">图书</a> <a href="#">衣帽</a> <a href="#">数码</a></li>
<li><a href="#">音像</a> <a href="#">男装</a> <a href="#">厨具</a></li>
<li><a href="#">箱包</a> <a href="#">女装</a> <a href="#">卫浴</a></li>
<li><a href="#">服饰</a> <a href="#">童装</a> <a href="#">家居</a></li>
<li><a href="#">充值</a> <a href="#">保健</a> <a href="#">珠宝</a></li>
<li><a href="#">电器</a> <a href="#">钟表</a> <a href="#">充值</a></li>
<li><a href="#">电脑</a> <a href="#">旅行</a> <a href="#">旅游</a></li>
<li><a href="#">手机</a> <a href="#">护肤</a> <a href="#">教育</a></li>
<li><a href="#">彩票</a> <a href="#">美妆</a> <a href="#">时装</a></li>
</ul>
</div>
</body>
</html>
网页效果如下:
然后引入style.css:
style.css代码如下:
#nav{
width: 500px;
background: darkgray;
}
.title{
font-size: 18px;
font-weight: bold;
text-indent: 1em;
line-height: 30px;
background: red;
}
ul{
background: darkgray;
}
/*
list-style
none:去掉圆点
text-indent:缩进
*/
ul li{
height: 30px;
list-style:none;
text-indent: 1em;
}
a{
text-decoration: none;
font-size: 14px;
color: black;
}
/* 鼠标放上去的颜色*/
a:hover{
color: #ff6519;
text-decoration:underline;
}
效果如下: