CSS: background repeat

By Xah Lee. Date: .

background-repeat

background-repeat

values:

.x {
 background-repeat: repeat;
 background-repeat: no-repeat;
 background-repeat: repeat-x;
 background-repeat: repeat-y;
}

example

example. no-repeat

.xno-repeat-DGJSN {
 background-image: url("i/venus_comb_32m-s289x217.jpg");
 width: 300px;
 height: 300px;
 background-repeat: no-repeat;
 border: dotted 2px red;
}

example. repeat

example. repeat-x

example. repeat-y

CSS. Background