css-base-ul+背景图片列表

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        ul{
            list-style-type: none;
        }
        ul li{
            border-bottom: 1px solid #000;
            background-image: url(im.png); /*填充背景图片*/
            background-repeat: no-repeat;/*不重复*/
            background-size: 10px 10px;/*设置背景大小*/
            margin-bottom: 10px;
            padding-bottom: 5px;
            background-position: 0px 5px;
            text-indent: 2em;/*文本缩进两个字体宽度*/
        }
    </style>
</head>
<body>
    <ul>
        <li>fsdfsfsfsfsd</li>
        <li>fsdfsfsfsfsd</li>
        <li>fsdfsfsfsfsd</li>
        <li>fsdfsfsfsfsd</li>
        <li>fsdfsfsfsfsd</li>
    </ul>
</body>
</html>

css-base-ul+背景图片列表

 

上一篇:CAA中交互选择对象——状态跳转


下一篇:献给android原生应用层开发初学者技术架构选型和整合的方案思路(五)