JSFiddle - React, Tailwind, and code Playground

by magicalex

HTML

<div class="container">
    <div class="half">Hello there.</div>
</div><br>
<div class="container">
    <div class="half right">Hello there, you old dog.</div>
</div><br>
<div class="container">
    <div class="half">Hello there you old dog. Been up to your old tricks?</div>
</div>

CSS

.container {
    display: inline-block;
    background: red;
}
.half {
    position: relative;
    right: 50%;
    background: yellow;
}