background-image: url("../images/dice.png");
background-image: url("../images/dice.png"), url("../images/abstract8.jpg");
Note that the first image is drawn on top, and the second is drawn behind
background-image: url("../images/abstract8.jpg");
background-size: 100% 100%;
background-image: url("../images/abstract8.jpg");
background-size: cover;
background-image: url("../images/abstract8.jpg");
background-position: right;
background-repeat: no-repeat;
background-size: contain;
background:
/* background-position background-repeat background-image */
center no-repeat url("../images/dice.png"),
/* background-position/background-size background-image */
left/100% 100% url("../images/abstract8.jpg");