mirror of
https://github.com/servo/servo.git
synced 2025-06-28 11:03:39 +01:00
36 lines
1.2 KiB
HTML
36 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Grid Layout Test: Aligning grid items using 'auto' margins and relative sized columns</title>
|
|
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
|
|
<link rel="help" title="10.2 Aligning with auto margins" href="https://drafts.csswg.org/css-grid/#auto-margins">
|
|
<link rel="match" href="../reference/grid-inline-axis-alignment-auto-margins-008-ref.html">
|
|
<meta name="assert" content="The 'left' and 'right' margins must be recomputed after the grid's intrinsic size is determined.">
|
|
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
|
|
<style>
|
|
#grid {
|
|
display: grid;
|
|
position: relative;
|
|
background: grey;
|
|
grid-template-columns: 40% 60%;
|
|
grid-template-rows: 100px;
|
|
height: 200px;
|
|
width: auto;
|
|
align-items: start;
|
|
}
|
|
#grid div {
|
|
margin: 0px auto 0px auto;
|
|
}
|
|
#item1 {
|
|
font: 20px/1 Ahem;
|
|
color: green;
|
|
}
|
|
#item2 {
|
|
font: 40px/1 Ahem;
|
|
color: blue;
|
|
}
|
|
</style>
|
|
<p>The test passes if it has the same visual effect as reference.</p>
|
|
<div id="grid">
|
|
<div id="item1">XXX</div>
|
|
<div id="item2">XXXXX</div>
|
|
</div>
|