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>
<!--[if IE]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
{
            padding: 0;
            margin: 0px;
            color: white;
        }
        html, body {
            height: 100%;
            width: 100%;
        }
        #header {
            background: black;
            height: 100px;
        }
        #content {
           width:100%;
    border:5px solid red;
    overflow:hidden;
    position:relative;
        }
        #left {
            background: #1664a0;
            height: 100%;
            width: 130px;
            float: left;
        }
        #right {
            background: #4aa016;
        height: 100%;
            float: left;
    width:100%;
    position:absolute;
    margin-left:130px;
        }
</style>
</head>
<body>
<div id="header">
    My Header
</div>
<div id="content">
    <div id="left">Left container</div>
    <div id="right">Right container</div>
</div>
</body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers