<div class="parent">
<div class="sled">
<div class="child">
πΆπ»
</div>
</div>
</div>
.parent {
position: relative;
width: 25px;
height: 150px;
background: cornflowerblue;
}
.sled {
position: absolute;
inset: 0;
animation: slide 3s ease-in-out alternate infinite;
background: lightcoral;
}
.child {
background: lemonchiffon;
}
@keyframes slide {
from {
transform: translateY(0%);
}
to {
transform: translateY(100%);
}
}
/* Not relevant to the example */
html,
body {
height: 100%;
}
body {
margin: 0;
display: grid;
place-items: center;
font-size: 1.25rem;
}
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.