https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e57d2a1ed5681d3ea058ea3956583200d2efe9aa authored by Eric Willigers on 15 April 2018, 11:01:13 UTC
CSS: Remove support for position values with 3 parts
Tip revision: e57d2a1
box-tree-registered-ref.html
<!DOCTYPE html>
<style>
.container {
  margin: 20px 0;
  border: solid 2px;
  width: 100px;
}

.pink {
  background: hotpink;
}
</style>

<div class="container">
  <div class="pink" style="width: 50px; height: 100px;"></div>
</div>

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