JSFiddle - React, Tailwind, and code Playground

HTML

<div id="wrapper">
    <div id="left">
        <div id="left_block_one"></div>
        <div id="left_block_two"></div>        
    </div>
    <div id="middle"></div>
    <div id="right"></div>
    <div id="footer"></div>
</div>

CSS

#wrapper {
    width: 600px;
    height: 600px;
    margin-left: auto;
    margin-right: auto;
    background-color: #cecece;
    position: relative;
}
#left {
    width: 150px;
    height: 490px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: green;
    padding-top: 10px;
}
#middle {
    width: 300px;
    height: 500px;
    background-color: blue;
    position: absolute;
    top: 0;
    left: 150px;
}
#right {
    width: 150px;
    height: 500px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: green;
}
#left_block_one {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: red;
}
#left_block_two {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: red;
}
#footer {
    width: 600px;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #666;
}