<div id="description">
<h2>Приклад: Застосування image-set()</h2>
<p>Блок використовує функцію image-set() для фонового зображення.</p>
</div>
<div id="result">
<div class="box with-image-set"></div>
</div>
#description {
background-color: #f2f2f2;
padding: 20px;
font-family: Arial, sans-serif;
}
#result {
display: flex;
justify-content: center;
align-items: center;
height: 200px;
}
.box {
width: 200px;
height: 200px;
margin-right: 20px;
}
.with-image-set {
background-image: image-set(
url("https://picsum.photos/100/100") 1x,
url("https://picsum.photos/400/400") 2x,
url("https://picsum.photos/800/800") 3x
);
background-repeat: no-repeat;
background-size: cover;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.