wpt / css / css-grid / alignment / grid-align-content-space-between-001.html

Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-grid/alignment/grid-align-content-space-between-001.html

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-grid-1/">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#align-content">
<link rel="match" href="grid-align-content-space-between-001-ref.html">
<style>
.grid {
    display: grid;
    width: 50px;
    height: 100px;
    grid-template-columns: 50px;
    grid-template-rows: 25px 25px;
    align-content: space-between;
}
.item1 {
    width: 50px;
    height: 25px;
    grid-row: 1/2;
    grid-column: 1/2;
    background-color: green;
}
.item2 {
    width: 50px;
    height: 25px;
    grid-row: 2/3;
    grid-column: 1/2;
    background-color: green;
}
</style>
<p>Test passes if there are two green boxes at the top and bottom edges of a 100px-tall area.</p>
<div class="grid">
    <div class="item1"></div>
    <div class="item2"></div>
</div>

/css/css-grid/alignment/grid-align-content-space-between-001-ref.html

<!DOCTYPE html>
<p>Test passes if there are two green boxes at the top and bottom edges of a 100px-tall area.</p>
<div style="width: 50px; height: 100px; display: flex; flex-direction: column; justify-content: space-between;">
    <div style="width: 50px; height: 25px; background-color: green;"></div>
    <div style="width: 50px; height: 25px; background-color: green;"></div>
</div>