CSS列表样式设置
程序员文章站
2022-03-02 15:25:24
...
对于ul li 列表样式的一些设置:
/*
行高:height
list-style:
去掉圆点:none;
圆点变成空心圆:circle;
圆点变成正方形:square
圆点变成数字(有序):decimal;
*/
ul li{
height: 30px;
list-style: none;
}