JSFiddle - React, Tailwind, and code Playground
by scispear
HTML
<body>
<div class="wrap">
<div class="menu">Stay right</div>
<div class="text">
Wide child element which determines the width of the page.
</div>
</div>
</body>
CSS
.text {
white-space:nowrap;
clear: both;
font-size:2em
}
.menu {
float: right;
}
.wrap {
display: table;
}