CSS Background Shorthand

Use the background shorthand property to define multiple background properties in one line.

Preview

Code

<style>
.box{
background:#bfdbfe url(https://picsum.photos/200) no-repeat center;
height:200px;
}
</style>

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

More CSS Backgrounds Examples (7)