Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-break/column-balancing-with-oofs-crash.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<style>
  .multicol {
    column-count: 2;
    width: 200px;
  }
  .relpos {
    position: relative;
  }
  .abspos {
    height: 25%;
    position: absolute;
  }
</style>
<div class="multicol">
  <div class="relpos">
    <div class="abspos">
      <p>
        text
      </p>
    </div>
  </div>
  <figure class="relpos">
    <div class="abspos">
      <p>
        text
      </p>
    </div>
  </figure>
</div>