Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
  <head>
  <script src="https://code.jquery.com/jquery-3.1.0.js"></script>
  </head>
<body>
  <div class="flex-box">
    <div class="col">
      <p>Pellentesque ...</p>
    </div>
    <div class="handle"></div>
    <div class="col">
      <p>Pellentesque ...</p>
    </div>
  </div>  
</body>
</html>
 
.flex-box {
  display: flex;
  width: 100%;
  margin: 0;
  height: 300px;
}
.flex-box .col {
  border: 1px solid grey;
  flex: 0.33;
  padding: 12px;
  overflow-y: auto;
  overflow-x: hide;
}
.handle {
  width: 1px;
  text-align: center;
  background: grey;
  transition: all ease-in 0.1s;
}
.draggable {
  background: grey;
}
Output

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

Dismiss x
public
Bin info
chengtiepro
0viewers