列表属性

86 阅读1分钟
<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: none;
            /* 将列表符号设置成图片 */
            list-style-image: url("图片来源路径");
            /* 改变列表符号的位置,在内部 */
            list-style-position: inside;
        }
    </style>
</head>
<body>
    <ul>
        <li>hello world</li>
        <li>hello world</li>
        <li>hello world</li>
        <li>hello world</li>
    </ul>
</body>
</html>