Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
<div id="wrapper" class="clear-fix">
    <div class="left-menu">
    </div>
    <div class="right-bar">
        <div class="right-content">
            <div class="content">
                <div class="content-wrapper"> 
                    <div class="content-body">
                        Here is content
                    </div
                </div>
            </div>
        </div>
    </div>
</div>
</body>
</html>
 
.left-menu {
    background-color: #0B0C0E;
    width: 20%;
    height: 100%;
    float: left;
}
.right-bar {
    background-color: #F0F0F0;
    height: 100%;
    width: 100%;
}
.right-content {
    float: left;
    width: 80%;
}
.right-content > .content {
    padding: 21px 0 0 42px;
}
.right-content > .content > .content-wrapper {
    width: 98%;
    height: 70%;
}
.right-content > .content .content-body {
    background-color: #FAFAFA;
    padding: 20px;
    font-size: 24px;
    border: 1px solid #D0D0D0;
}
.clear-fix:after {
  content: "";
  display: table;
  clear: both;
}
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers