<div id="description">
<h2>Приклад 2: Встановлення фонового зображення елемента за допомогою функції url()</h2>
</div>
<div id="result">
<div class="box"></div>
<div class="box with-url"></div>
</div>
#result {
display: flex;
justify-content: center;
}
.box {
width: 200px;
height: 200px;
background-color: red;
margin-right: 20px;
}
.with-url {
background-image: url("https://picsum.photos/200/200");
background-size: cover;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.