JSFiddle - React, Tailwind, and code Playground
by imsky
HTML
<div id="a">
<div id="b">
<div id="c">
<div id="e">content</div>
</div>
<div id="d">sidebar</div>
</div>
</div>
CSS
#a {
position: relative;
clear: both;
float: left;
width: 100%;
overflow: hidden
}
#b {
float: left;
width: 200%;
position: relative;
left: 200px;
}
#c {
float: right;
width: 50%;
position: relative;
right: 200px;
}
#d {
float: left;
width: 200px;
position: relative;
right: 200px;
}
#e {
margin-left:200px;
position: relative;
right: 100%;
overflow: hidden;
}