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; }
本文链接:https://my.lmcjl.com/post/20973.html
展开阅读全文
4 评论