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-floats-ref.html
<!DOCTYPE html>
<style>
.container {
  width: 150px;
  border: solid 2px;
}

.left {
  float: left;
  background: green;
  width: 100px;
  height: 100px;
}

.right {
  float: right;
  background: green;
  width: 100px;
  height: 100px;
}
</style>

<div class="container">
  <div class="left"></div>
  <div class="right"></div>
</div>
back to top