JSFiddle - React, Tailwind, and code Playground

by SebastianPataneMasuelli

HTML

<div id="container">
    <div id="inner">inner</div>
    <div id="right">right</div>
</div>

CSS

div {
 border: 1px solid red;  
    position: relative;
    height: 100px;
}
div#container {
    width: 960px;

}
div#inner {
    width: 400px;
    margin: 0 auto;
}
div#right {
    width: 100px;
    float: right;
 position: absolute;
    right: 100px;
    top: 0;
}