Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <title>Demo 1 | Floats</title>
  <meta name="description" content="Demo 1: Layout content with floats.">
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
    <style>
      html, body {
        height: 500px;
        margin: 0;
      }
      #map {
        float: right;
        background: lightcyan;
        width: 70%;
        height: 100%;
      }
      #sidebar {
        float: left;
        background: lightgreen;
        width: 30%;
        height: 100%;
      }
  </style>
</head>
<body>
  <div id="sidebar">Sidebar</div>
  <div id="map">Map</div>
</body>
</html>
Output

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

Dismiss x
public
Bin info
patrickarltpro
0viewers