<main>
<div>background-attachment: scroll;</div>
<div>background-attachment: fixed;</div>
</main>
div {
width: 300px;
height: 600px;
background-color: pink;
background-image: url("https://via.placeholder.com/100x50");
}
div:first-of-type {
background-attachment: scroll; /* 기본값 */
}
div:last-of-type {
background-attachment: fixed;
}
main {
height: 200px;
overflow: auto;
padding: 10px;
display:grid;
grid-gap: 10px;
grid-template-columns: repeat(2, 1fr);
place-items: center center;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.