Revision 105aa9b5f1a2cd3ab4f2d4cbf9db2cd9a0c7bd39 authored by jgraham on 28 March 2018, 19:03:58 UTC, committed by GitHub on 28 March 2018, 19:03:58 UTC
1 parent 167a1d6
Raw File
auto-block-size-flex-ref.html
<!DOCTYPE html>
<style>
.container {
  border: solid 2px;
  display: flow-root;
  width: 300px;
}

.child {
  background: green;
  border: solid 2px;
  box-sizing: border-box;
  float: left;
  height: 100px;
}
</style>

<div class="container">
  <div class="child" style="width: 100px;"></div>
  <div class="child" style="width: 200px;"></div>
</div>
back to top