Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
-->
<html><head>
<meta charset="utf-8">
<title>CSS Grid Test: Masonry layout with normal `gap` in both axes</title>
<meta name="assert"
content="Test passes if a 'normal' gap is the initial value,
is resolved to zero,
does not allow margin collapsing,
and inherits as 'normal' in masonry layout">
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
<link rel="author" title="Elika J. Etemad" href="https://fantasai.inkedblade.net/contact">
<link rel="match" href="masonry-gap-002-ref.html">
<style>
html,body {
color:black; background-color:white; font:25px/1 "Courier New", monospace; padding:0; margin:0;
}
grid {
display: inline-grid;
grid-template-columns: repeat(4,auto);
grid-template-rows: masonry;
color: #444;
border: 1px solid;
padding: 2px;
}
item {
background-color: #444;
color: #fff;
padding: 20px;
margin: 3px;
border: 5px solid blue;
display: block;
}
</style>
</head>
<body>
<!-- test initial value of normal -->
<grid>
<item style="grid-column: 1;">1</item>
<item style="padding:0; grid-column: 2;">2</item>
<item style="grid-column: 3;">3</item>
<item style="grid-column: 4;">4</item>
<item style="padding:0; grid-column: 2;">5</item>
</grid>
<!-- test that 'normal' is supported and also resolves to zero -->
<grid style="gap: 10px; gap: normal">
<item style="grid-column: 1;">1</item>
<item style="padding:0; grid-column: 2;">2</item>
<item style="grid-column: 3;">3</item>
<item style="grid-column: 4;">4</item>
<item style="padding:0; grid-column: 2;">5</item>
</grid>
<!-- test inheritance of normal as keyword -->
<grid style="gap: 10px; gap: normal;">
<div style="columns: 3; gap: inherit;">
<item>1</item>
<item>2</item>
<item>3</item>
</div>
</grid>