2024年04月10日 懒猪 前端开发 前端博客 个人博客 网站制作 鹏仔先生 百变鹏仔 HTML CSS javascript JS 共享博客
1.列表符号样式
语法:
list-style-type: disc (实心圆) | circle (空心圆) | square (实心方块) | decimal (数字) | none (取掉列表符号样式);
2.使用图片作为列表符号
语法:
list-style-image: url(图片路径);
3.设置列表符号位置
语法:
list-style-position: outside (默认值) | inside;
outside: 列表符号在 li 的外边
inside: 列表符号在 li 的里面
4.去掉列表符号样式
语法:
list-style: none;
常用写法:
ul, ol{ list-style: none; }
本文链接:http://so.lmcjl.com/news/1699/