JSFiddle - React, Tailwind, and code Playground

by Aakash Khapare M

HTML

<div id="container">
    <div id="img-container"></div>
    <div id="sentence">This is a sentence that stretched on a bit</div>
</div>

CSS

#container{
    text-align: center;
    width: 50%;
    position: relative;
    border: 1px solid #eee;
}
#img-container {
    width: 50px;
    height: 200px;
    background-color: grey;
    display: inline-block;
}
#sentence {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    background-color: lightblue;
    position: absolute;
    top : 0;
}