三、列表类属性
1.设置列表符号类型
语法:list-style-type:disc(实心圆)|circle(空心圆)|square(实心方块)|decimal(数字)|none(去掉列表符号);
2.使用图片作为列表符号
语法:list-style-image:url(1.jpg);
3.设置列表符号位置
语法: list-style-position:outside(外)|inside(里);
4.列表属性简写方式
语法:list-style:none;
四、背景类属性
1.背景色
语法:background-color:颜色值;
注:颜色值的设置方法和color属性值设置方法相同
2.背景图
语法: background-image:url(2.jpg);
3.背景平铺
语法: background-repeat:repeat(平铺)|no-repeat(不平铺)|repeat-x(横向平铺)|repeat-y(纵向平铺);
4.背景图位置
语法:background-position:left|center|right|数值 top|center|bottom|数值;
注:设置为数值时,水平方向正值向右,负值向左,垂直方向正值向下,负值向上
5.背景简写方式
语法:background:red url(1.jpg) no-repeat right bottom;
注:简写中多个属性值用空格隔开,可以互换位置,建议按照这个顺序来写