Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <style>
    .container {
      display: flex;
    }
  .left {
    order: 1;
    width: 200px;
    height: 300px;
    background-color: rgba(100, 0, 0, .6);
  }
  .center {
    order: 2;
    flex: 1;
  }  
  .right {
    order: 3;
    width: 200px;
    height: 300px;
    background-color: rgba(100, 0, 100, .6);
  }
  </style>
</head>
<body>
<div class="container">
  <div class="center">center</div>
  <div class="left">left</div>
  <div class="right">right</div>
</div>
</body>
</html>
Output

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

Dismiss x
public
Bin info
hua-qipro
0viewers