Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<link rel="help" href="https://drafts.csswg.org/css-grid-3">
<link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
<link rel="match" href="row-track-sizing-004-ref.html">
<style>
.masonry {
display: masonry;
masonry-direction: row;
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="masonry">
<div style="background-color: orange; width: 100px;"></div>
<div style="background-color: yellow; width: 100px;"></div>
<div style="background-color: blue; width: 100px;"></div>
</div>
</body>
</html>