JSFiddle - React, Tailwind, and code Playground

by tea4two

HTML

<div id="parent">
    <div id="div1">1
        <p>asdfa</p>
        <p>asdfasdfaa sdfasdfaa sdfa sdfaasdf asdfa asdfasd faasdfa sdfa</p>
    </div>
    <div id="div2">2</div>
    <div id="div3">3</div>
    
    after what
</div>

what what?

CSS

#parent {
    background-color: #f00;
    margin: 0 150px 0 200px;
    min-width: 350px;
}
#parent:after {
    content:'';
    display:table;
    clear:both;
}
#div2 {
    float: left;
    width: 200px;
    margin-left: -200px;
    background-color: green;
}
#div3 {
    float: right;
    background-color: blue;
    width: 150px;
    right: -150px;
}
#div1 {
    width: 100%;
    float: right;
}
#div2,#div3 {
    position: relative;
}