orthogonal-positioned-grid-items-009-ref.html (884B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Grid Layout Test: Orthogonal positioned grid items reference file</title> 4 <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com"> 5 <style> 6 #grid { 7 display: grid; 8 grid: 150px 100px / 200px 300px; 9 margin: 1px 2px 3px 4px; 10 padding: 20px 15px 10px 5px; 11 border-width: 9px 3px 12px 6px; 12 border-style: solid; 13 width: 550px; 14 height: 400px; 15 } 16 17 #grid > div { 18 writing-mode: vertical-lr; 19 } 20 21 #firstItem { 22 background: magenta; 23 } 24 25 #secondItem { 26 background: cyan; 27 } 28 29 #thirdItem { 30 background: yellow; 31 } 32 33 #fourthItem { 34 background: lime; 35 } 36 </style> 37 38 <p>The test passes if it has the same output than the reference.</p> 39 40 <div id="grid"> 41 <div id="firstItem">First item</div> 42 <div id="secondItem">Second item</div> 43 <div id="thirdItem">Third item</div> 44 <div id="fourthItem">Fourth item</div> 45 </div>