I created a row with horizontal scrolling on smaller screens.
Is there a way to have text aligned left, center, and right all on the same line?
I want to achieve this with text aligned in multiple positions.
Check out the demonstration on Stackblitz
Code
<div class="d-flex justify-content-md-center flex-nowrap myrow" style="margin-top: 148px;">
<span style="margin-right:15px">LEFT</span>
<span style="margin-right:15px">CENTER</span>
<span style="margin-right:15px">RIGHT</span>
</div>
.myrow {
overflow-x: auto;
}