2021-01-24 Overflow Playground
by Ttt Yyy
HTML
<div class='unit'>
<span class='text'>Hi my name is Chris</span>
<button>
Like
</button>
</div>
<div class='unit'>
<span class='text'>Hi my name is Chris longggggg</span>
<button>
Like
</button>
</div>
<div class='unit'>
<span class='text-wrapped'>Hi my name is Chris longggggg</span>
<button>
Like
</button>
</div>
CSS
.unit {
align-items: center;
border: 1px solid black;
display: flex;
justify-content: space-between;
padding: 12px;
width: 200px;
}
/* .unit button {
flex: 0 0 auto;
} */
.text {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
flex: 1 1 auto;
/* margin-right: 4px; */
}