Multiple Background Images

CSS allows multiple background images on a single element.

Preview

Code

<style>
.box{
width:200px;
height:120px;
background:
url("https://via.placeholder.com/40") top left no-repeat,
url("https://via.placeholder.com/40") bottom right no-repeat,
#e5e7eb;
}
</style>

<div class="box"></div>

More CSS Backgrounds Examples (8)