background-repeat
如果指定了 background-image 属性,则 CSS 中的 background-repeat 属性定义它是否(以及如何)重复。
html {
background-image: url(logo.png);
background-repeat: repeat-x;
}值background-repeat 属性接受以下值
/* Single value syntax */
background-repeat: repeat; …