Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Grid Lanes Test: safe alignment should have the same behavior as regular alignment for align-items start and end in column direction</title>
<link rel="author" title="Celeste Pan" href="mailto:celestepan@microsoft.com">
<link rel="match" href="column-align-items-002-ref.html">
<style>
html, body {
color: black; background-color: white; font: 16px/1 monospace; padding: 0; margin: 0;
}
.grid-lanes {
display: grid-lanes;
grid-template-columns: repeat(3, 80px);
gap: 5px;
padding: 2px;
margin: 5px;
}
item {
display: block;
color: white;
}
</style>
</head>
<body>
<div class="grid-lanes" style="align-items: safe start;">
<item style="height: 70px; background: #f4a0a0;">1</item>
<item style="height: 40px; background: #2ca02c;">2</item>
<item style="height: 120px; background: #ff7f0e;">3</item>
<item style="height: 60px; background: #ffbb78;">4</item>
<item style="height: 50px; background: #aad4f5;">5</item>
<item style="height: 80px; background: #c5b0d5;">6</item>
<item style="height: 40px; background: #d62728;">7</item>
<item style="height: 50px; background: #98df8a;">8</item>
<item style="height: 35px; background: #9edae5;">9</item>
</div>
<div class="grid-lanes" style="align-items: safe end;">
<item style="height: 70px; background: #f4a0a0;">1</item>
<item style="height: 40px; background: #2ca02c;">2</item>
<item style="height: 120px; background: #ff7f0e;">3</item>
<item style="height: 60px; background: #ffbb78;">4</item>
<item style="height: 50px; background: #aad4f5;">5</item>
<item style="height: 80px; background: #c5b0d5;">6</item>
<item style="height: 40px; background: #d62728;">7</item>
<item style="height: 50px; background: #98df8a;">8</item>
<item style="height: 35px; background: #9edae5;">9</item>
</div>
</body>
</html>