JSFiddle - React, Tailwind, and code Playground

by Ken Z

HTML

<div class="wrapper">
    <div class="left1">left1</div>
    <div class="left2">
        <div>
            <img src="http://findicons.com/files/icons/2711/free_icons_for_windows8_metro/128/beer.png" />
        </div>
        <div>
            <p class="PaneText">My Team's Requests / Managed by my direct reports / Processes Completed / Processes Completed / Processes Completed / Processes Completed</p>
        </div>
    </div>
</div>

CSS

html, body {
    height:100%;
    margin:0 auto;
    padding:0;
}
.wrapper {
    min-height:100%;
    position:relative;
    background-color: #cccccc;
}
.left1 {
    position:absolute;
    top:0;
    left:0;
    float: left;
    width: 332px;
    height:100%;
    background-color: #ffffcc;
}
.left2 {
    position: absolute;
    float: left;
    top:0;
    left: 332px;
    width: 48px;
    height:100%;
    background-color: #ccffcc
}
.left2 img {
    width:48px;
    height:48px;
}
.PaneText {
    -webkit-transform: rotate(90deg);
    white-space: nowrap;
}