JSFiddle - React, Tailwind, and code Playground
by Vadim
HTML
<div class="cont">
<span>Lorem ipsum</span>
<span>Lorem ipsum</span>
<span>Lorem ipsum</span>
</div>
CSS
.cont{
max-width: 150px;
display: flex;
overflow-x: scroll;
/* justify-content: flex-end; */
}
.cont span {
/* width: 100%; */
flex-shrink: 0;
}
.cont span + span::before {
content: ' • ';
display: inline-block;
}