grid-block-end.html (764B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>margin-trim: grid-block-end</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-end-ref.html"> 8 <meta name="assert" content="block-end should trim block-end margins of items on last row"> 9 <style> 10 grid { 11 display: inline-grid; 12 border: 1px solid black; 13 grid-template-columns: auto auto; 14 margin-trim: block-end; 15 } 16 17 item { 18 display: block; 19 background-color: green; 20 width: 50px; 21 height: 50px; 22 margin-block-end: 10px; 23 } 24 </style> 25 </head> 26 <body> 27 <grid> 28 <item style="grid-row: span 2; height: auto;"></item> 29 <item></item> 30 <item></item> 31 </grid> 32 </body> 33 </html>