css列表样式

html文件如下:




    
    Title

  





css样式:

#nav{
    width: 500px;
}

/*标题*/
.title{
    font-size: 18px;
    font-weight: bold;
    text-indent: 1em;
    line-height: 30px;
    background: #ad4129;
}

ul{
    background: #c9d3c4;
}

ul li{
    height: 30px;
    list-style: none;
    text-indent: 1em;
}

a{
    text-decoration: none;
    font-size: 18px;
    color: #3e968c;
}

a.hover{
    color: orange;
    text-decoration: underline;
}

浏览器翻译如下:

css列表样式_第1张图片 

目录结构如下:

css列表样式_第2张图片

你可能感兴趣的:(CSS,css,前端)