tabulator bar

by Dennis Bauszus

HTML

<div style="position: relative; width: 100%;">
  <div style="left: 25%; right: 50%;" class="inline left">

  </div>
  <div style="left: 50%; right: 30%;" class="inline right">

  </div>
</div>

CSS

div {
  height: 50px;
  background-color: #eee;
}

.inline {
  position: absolute;
}

.left {
  background-color: red;
}

.right {
  background-color: green;
}