grid-block-start.html (750B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>margin-trim: grid-block-start</title> 5 <link rel="author" title="Sammy Gill" href="mailto:sammy.gill@apple.com"> 6 <link rel="help" href="https://drafts.csswg.org/css-box-4/#margin-trim-grid"> 7 <link rel="match" href="grid-block-start-ref.html"> 8 <meta name="assert" content="block-start should trim block-start margins of items on first row"> 9 <style> 10 grid { 11 display: inline-grid; 12 border: 1px solid black; 13 grid-template-columns: auto auto; 14 margin-trim: block-start; 15 } 16 item { 17 display: block; 18 background-color: green; 19 width: 50px; 20 height: 50px; 21 margin-block-start: 10px; 22 } 23 </style> 24 </head> 25 <body> 26 <grid> 27 <item></item> 28 <item></item> 29 <item></item> 30 <item></item> 31 </grid> 32 </body> 33 </html>