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/nested-float-in-multicol-crash.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<style>
  .float {
    float: left;
    clear: both;
  }
  div {
    padding-bottom: 10px;
    padding-top: 10000000000px;
  }
</style>
<div style="column-count:15;">
  <div>
    text
    <div></div>
    <div class="float"></div>
  </div>
  <div class="float"></div>
</div>