Make a div overflow the parent div

by Flyout

HTML

<div id="parent">
  <div>
    text above
  </div>
  <div class="nowrap">
    text which must oveflow
  </div>
  <div>
    text below
  </div>
</div>

CSS

#parent {
  border: 1px solid black;
  width: 20%;
}

.nowrap {
  white-space: nowrap;
}