blob: ea85b19ff5e3903cfe79693592d614aefd2a32c5 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
div {
display: inline-block;
width: 130px;
height: 110px;
margin: 10px;
background-color: green;
background-image: url(resources/green-24x24.png);
}
</style>
</head>
<body>
<div style="background-repeat: repeat repeat;"></div>
<div style="background-repeat: repeat space;"></div>
<div style="background-repeat: repeat round;"></div>
<br>
<div style="background-repeat: space repeat;"></div>
<div style="background-repeat: space space;"></div>
<div style="background-repeat: space round;"></div>
<br>
<div style="background-repeat: round repeat;"></div>
<div style="background-repeat: round space;"></div>
<div style="background-repeat: round round;"></div>
<br>
</body>
</html>