Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <title>Schedule</title>
    <style>
      .schedule {
        width: 300px;
        border: 1px solid grey;
        overflow: scroll;
      }
      .timeline {
        height: 20px;
        width: 550px;
      }
      .timeline-time {
        float: left;
        width: 50px;
        text-align: left;
      }
      .schedule-area {
        height: 300px;
        position: relative;
      }
      .tile {
        position: absolute;
        height: 20px;
        width: 100px;
        background: yellow;
      }
    </style>
  </head>
  <body>
    <div class="schedule">
      <span>26 Nov 2016</span>
      <!-- Timeline axis -->
      <div class="timeline">
        <div class="timeline-time">
          0900
        </div>
        <div class="timeline-time">
          1000
        </div>
        <div class="timeline-time">
          1100
        </div>
        <div class="timeline-time">
          1200
        </div>
        <div class="timeline-time">
          1300
        </div>
        <div class="timeline-time">
          1400
        </div>
        <div class="timeline-time">
          1500
        </div>
        <div class="timeline-time">
          1600
        </div>
        <div class="timeline-time">
          1700
        </div>
        <div class="timeline-time">
          1800
        </div>
      </div>
      <!-- /Timeline axis -->
      <!-- Schedule Area -->
      <div class="schedule-area">
        <div class="tile" style="top: 20px; left: 50px;">
          Booking 1
        </div>
        <div class="tile" style="top: 40px; left: 75px;">
          Booking 2
        </div>
        <div class="tile" style="top: 60px; left: 400px;">
          Booking 2
        </div>
      </div>
      <!-- /Schedule Area -->
    </div>
    <script></script>
  </body>
</html>
Output

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

Dismiss x
public
Bin info
dg1234ukpro
0viewers