https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 3420010fcacabcec00013c156c2082e7252b605b authored by Darren Shen on 10 April 2018, 08:46:40 UTC
[css-typed-om] Fix unsupported values in non-list-valued properties.
Tip revision: 3420010
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