CSS Examples: background-repeat

Examples

Example 1: no-repeat

 

Example 2: repeat

 

Example 3: repeat-x

 

Example 4: repeat-y

 

Styles Used

 

.one {
background-image:url(starsolid.gif);
background-repeat:no-repeat;}

.two {
background-image:url(starsolid.gif);
background-repeat:repeat;}

.three {
background-image:url(starsolid.gif);
background-repeat:repeat-x;}

.four {
background-image:url(starsolid.gif);
background-repeat:repeat-y;}