flex-column-inline-multiline-ref.html (748B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>margin-trim: flex-column-inline-multiline</title> 5 <link rel="author" href="mailto:sammy.gill@apple.com"> 6 <link rel="help" href="https://drafts.csswg.org/css-box-4/#margin-trim-flex"> 7 <meta name="assert" content="inline-start should be trimmed for all items on the first flex line and inline-end should be trimmed for all items on the last flex line"> 8 <style> 9 flexbox { 10 display: flex; 11 width: min-content; 12 height: 100px; 13 flex-direction: column; 14 flex-wrap: wrap; 15 gap: 0px 30px; 16 } 17 item { 18 display: block; 19 background-color: green; 20 width: 50px; 21 height: 50px; 22 } 23 </style> 24 </head> 25 <body> 26 <flexbox> 27 <item></item> 28 <item></item> 29 <item></item> 30 <item></item> 31 </flexbox> 32 </body> 33 </html>