background-repeat
background-repeat
background-repeat CSS 属性定义背景图像的重复方式。背景图像可以沿着水平轴,垂直轴,两个轴重复,或者根本不重复。
语法
/* 单值语法 */
background-repeat: repeat-x;
background-repeat: repeat-y;
background-repeat: repeat; // 图像会按需重复来覆盖整个背景图片所在的区域
background-repeat: space; // 图像会尽可能得重复
background-repeat: round;
background-repeat: no-repeat; // 图像不会被重复
/* 双值语法: 水平horizontal | 垂直vertical */
background-repeat: repeat space;
background-repeat: repeat repeat;
background-repeat: round space;
background-repeat: no-repeat round;
background-repeat: inherit;