css背景及css列表

wangjie 2020-02-26

CSS背景

background是一个综合属性,它分为以下几个属性。

background-color 背景色

background-image 背景图片

background-repeat 设置背景图的平铺方式

属性值:no-repeat 

  repeat-x

  repeat-y

background-position 设置或检索对象的背景图像位置

background-size 设置背景图的尺寸

background-attachment 设置或检索背景图像是随对象内容滚动还是固定的 fixed  固定的

综合运用示例

background: url(imgs/banner.jpg) 200px 100px /100% no-repeat fixed;
/**                   图片            位置      大小    平铺     固定   *

CSS列表

列表样式list-style也是一个综合属性,分为下列几个属性。

list-style-type: none;

 去除列表前面的符号

list-styleposition: outside/inside;

 设置列表前面符号的位置

list-style-image: url();

 设置或检索作为对象的列表项标记的图像

相关推荐

aSuncat / 0评论 2020-08-18