abs position bug orig

by weijarz

HTML

<div id="container">
    <div id="left">
      <div id="content-a">
        LEFT
      </div>
    </div>
    <div id="right">
      RIGHT
    </div>
  </div>

CSS

#container {
  display: -webkit-box;
  display: -moz-box;
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #ddd;
  border: 2px solid #000;
}
#left {
  position: relative;
  width: 15em;
  max-width: 50%;
  background: #faa;
}
#right {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  position: relative;
  box-flex: 1;
  background: #aaf;
}