Some overflow xprmnt
by ShaCP
HTML
<div class="container">
<div class="short-text">
Some text
</div>
<div class="long-text">
Some longer text
</div>
<div class="image">
</div>
</div>
CSS
.container {
height: 50px;
width: 150px;
display: grid;
grid-template-columns: auto auto;
grid-template-rows: 25px 25px;
overflow: hidden;
box-shadow: 0 2px 5px rgb(0 0 0 / 16%), 0 2px 10px rgb(0 0 0 / 12%);
}
.short-text {
grid-row: 1;
}
.long-text {
grid-row: 2;
}
.image {
width: 50px;
height: 50px;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-image: url("https://upload.wikimedia.org/wikipedia/commons/6/6a/JavaScript-logo.png");
}