-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[css-grid][masonry] Update tests to align with intrinsic track sizing…
… behavior (#45669) Updating masonry tests to ensure intrinsic tracks are the same size.
- Loading branch information
Showing
2 changed files
with
95 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,31 +8,31 @@ | |
<title>Reference: Masonry layout with `align-content` in grid axis</title> | ||
<link rel="author" title="Mats Palmgren" href="mailto:[email protected]"> | ||
<style> | ||
html,body { | ||
color:black; background-color:white; font:15px/1 monospace; padding:0; margin:0; | ||
} | ||
html,body { | ||
color:black; background-color:white; font:15px/1 monospace; padding:0; margin:0; | ||
} | ||
|
||
grid { | ||
display: inline-grid; | ||
gap: 1px 2px; | ||
grid-template-columns: 1ch auto; | ||
grid-template-rows: repeat(4,auto); | ||
background: content-box silver; | ||
border: 1px solid; | ||
padding: 0 3px 2px 0; | ||
width: 100px; | ||
height: 120px; | ||
align-content: center; | ||
justify-items: start; | ||
} | ||
grid { | ||
display: inline-grid; | ||
gap: 1px 2px; | ||
grid-template-columns: 1ch auto; | ||
grid-template-rows: repeat(4,19px); | ||
background: content-box silver; | ||
border: 1px solid; | ||
padding: 0 3px 2px 0; | ||
width: 100px; | ||
height: 120px; | ||
align-content: center; | ||
justify-items: start; | ||
} | ||
|
||
item { | ||
background-color: #444; | ||
color: #fff; | ||
} | ||
item { | ||
background-color: #444; | ||
color: #fff; | ||
} | ||
|
||
.tall { grid-row: span 2; padding: 3px 11px 1px 13px; } | ||
</style> | ||
.tall { grid-row: span 2; padding: 3px 11px 1px 13px; } | ||
</style> | ||
</head> | ||
<body> | ||
|
||
|
@@ -90,7 +90,7 @@ | |
<item style="grid-row:3/4">6</item> | ||
</grid> | ||
|
||
<grid style="align-content:stretch"> | ||
<grid style="align-content:stretch; grid-template-rows: repeat(4,29.25px);"> | ||
<item class="tall" style="grid-row:1/2">1</item> | ||
<item style="grid-row:2/3">2</item> | ||
<item style="grid-row:3/4">3</item> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters