1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<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="help" href="https://drafts.csswg.org/css-grid-3/#alignment">
<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;
display: inline-masonry;
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>
|