Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<style>
.grid {
    display: grid;
    grid-template-rows: 20px 1fr 30%;
    width: 100px;
    height: 100px;
}
</style>
<body>
  <p>Test that masonry tracks are correctly sized with mixed definite, fr and %.</p>
  <div class="grid">
    <div style="background-color: orange;"></div>
    <div style="background-color: yellow;"></div>
    <div style="background-color: blue;"></div>
  </div>
</body>
</html>