css练习2

来源:互联网 发布:linux 搜索文件 编辑:程序博客网 时间:2024/06/01 22:16
<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <style>        div{            background-color: #19242C;            width: 300px;            height: 300px;            color: white;            box-sizing: border-box;        }        ul{            list-style: none;            padding: 0px;            margin: 0px;            text-align: center;            width: 100%;            height: 100%;            margin-left: 50px;        }        li{            background-image: url("img/ico.png");            background-repeat: no-repeat;            width: 20px;            height: 40px;            white-space: nowrap;            line-height: 40px;            text-indent: 25px;        }        #l1{            background-position: 2px 10px;        }        #l2{            background-position: -20px 10px;        }        #l3{            background-position: -40px 10px;        }        #l4{            background-position: -60px 10px;        }        #l5{            background-position: -80px 10px;        }    </style>    <title>Title</title></head><body><div>    <h2>联系我们</h2>    <ul>        <li id="l1">总机:0427-3293318</li>        <li id="l2">总机:0427-3293318</li>        <li id="l3">总机:0427-3293318</li>        <li id="l4">总机:0427-3293318</li>        <li id="l5">总机:0427-3293318</li>    </ul></div></body></html>
0 0
原创粉丝点击