Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-grid/masonry/tentative/alignment/row-align-items-center-001.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>CSS Masonry Test: Centered alignment in grid axis</title>
<link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
<link rel="match" href="row-align-items-center-001-ref.html">
<style>
.masonry {
    display: masonry;
    masonry-direction: row;
    background: gray;
    item-tolerance: 0;
    grid-template-rows: repeat(3, 100px);
    width: 300px;
    align-items: center;
}
</style>
<body>
  <p>Test that using align-items centers each item to the grid-axis track it is on.</p>
  <div class="masonry">
    <div style="width: 50px; height: 50px; background-color: lightblue;"></div>
    <div style="width: 100px; height: 15px; background-color: lightsalmon;"></div>
    <div style="width: 25px; height: 25px; background-color: plum;"></div>
    <div style="background-color: lightgreen; width: 60px; height: 60px;"></div>
    <div style="background-color: lightpink; height: 80px; width: 200px; grid-row: span 2;"></div>
  </div>
</body>
</html>