<section>
<h2>border-box</h2>
<div class="section image bg-border">Hexlet - hands-on programming courses</div>
</section>
<section>
<h2>padding-box</h2>
<div class="section image bg-padding">Hexlet - hands-on programming courses</div>
</section>
<section>
<h2>content-box</h2>
<div class="section image bg-content">Hexlet - hands-on programming courses</div>
</section>
xxxxxxxxxx
body {
display: grid;
grid-gap: 30px;
grid-template-columns: 1fr 1fr;
font: 14px/1.5 monospace;
}
.section {
display: flex;
align-items: center;
justify-content: center;
height: 200px;
padding: 20px;
font-weight: bold;
font-size: 30px;
text-align: center;
background: #ffeb3b;
border: 10px dashed #000;
}
.image {
background-image: url("https://assets.codepen.io/1425525/tota_ill_12.jpg");
background-repeat: no-repeat;
background-size: cover;
}
.bg-border {
background-origin: border-box;
}
.bg-padding {
background-origin: padding-box;
}
.bg-content {
background-origin: content-box;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.