JSFiddle - React, Tailwind, and code Playground

HTML

<div class='wrapper'>
    <div class='centered'>
        This text is horizontally centered.
        <div class='left'>
            This text is to the left of the centered text.
        </div>
    </div>
</div>

CSS

body {
    background: #f77;
    font-family: 'Helvetica Neue', sans-serif;
}
.wrapper {
    text-align: center;
    padding-Top: 200px;
}
.centered {
    display: inline-block;
    background: #0ff;
    position: relative;
    padding: 10px;
}
.left {
    position: absolute;
    right: 100%;
    margin-right: 20px;
    width: 100px;
    padding: 10px;
    top: 0;
    background: #ff0;
}