Are CSS3 values for background-repeat supported?
HTML
<div id="space">Space</div>test
<div id="round">Round</div>
<div id="repeat-no-repeat">Repeat no-repeat</div>
<div id="space-round">Space round</div>
CSS
div {
width: 250px;
height: 250px;
border: 1px solid green;
margin: .5em;
background-image: url("https://cdn.pixabay.com/photo/2014/10/26/15/26/board-503944_960_720.jpg");
}
#space {
background-repeat: space;
}
#round {
background-repeat: round;
}
#repeat-no-repeat {
background-repeat: repeat no-repeat;
}
#space-round {
background-repeat: space round;
}