dompdf icon indicating copy to clipboard operation
dompdf copied to clipboard

Adjacent float elements do not wrap

Open bsweeney opened this issue 4 years ago • 0 comments

When adjacent float elements extend beyond the width of the container they do not wrap to the next "line".

<style>
  @page {
    margin: 0;
    size: 300pt;
  }
  .left {
    background-color: orange;
    float: left;
    height: 50px;
    margin: 5px;
    width: 125px;
  }
  .right {
    background-color: orange;
    float: right;
    height: 50px;
    margin: 5px;
    width: 125px;
  }
</style>

<div class="left"></div>
<div class="left"></div>
<div class="left"></div>

<div style="page-break-before: always;"></div>

<div class="right"></div>
<div class="right"></div>
<div class="right"></div>

bsweeney avatar Mar 23 '22 14:03 bsweeney