Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

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