JSFiddle - React, Tailwind, and code Playground

by Fredy Sudhir

HTML

<div id="App">
            <div id="AppFrame">
                <div id="AppMenu">
                    <div id="AppMenuContent">test</div>
                    <div id="AppMenuLog">test</div>
                </div>
                <!--<div id="AppDisplay">
                    test
                </div>-->
            </div>
        </div>

CSS

html, body{
    height: 100%;
    margin-left: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: #ebebeb;
    font-family:Helvetica;
}
#App{
    height: 100%;
    margin-left: 0px;
    margin-top: 0px;
}
#AppFrame{
    display: table;
    height: 100%;
    margin-top: 0px;
}
#AppMenu{
    height: 100%;
    width: 300px;
    margin-top: 0px;
    display: table-row;               
}
#AppMenuContent{
    max-width: 150px;
    height: 100%;
    background-color: red;
    display:table-cell;
    width:100px;
}
#AppMenuLog{
    margin-left: 65px;
    width: 200px;
    height: 100%;
    background-color: #999999; 
    display:table-cell;
}
#AppDisplay{
    display: table-cell;
    height: 100%;
}