subgrid-baseline-003-ref.html (730B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Grid Test: baseline-aligned subgrid item</title> 6 <link rel="author" title="Matt Woodrow" href="mailto:mattwoodrow@apple.com"> 7 <link rel="help" href="https://drafts.csswg.org/css-grid-2"> 8 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css"> 9 <style> 10 html,body { 11 color:black; background-color:white; font:16px/1 Ahem; padding:0; margin:0; 12 } 13 14 .grid { 15 display: grid; 16 grid-template-columns: auto auto; 17 max-width: 100px; 18 place-items: baseline start; 19 } 20 21 .first { 22 font-size: 3em; 23 } 24 25 .second { 26 font-size: 2em; 27 } 28 </style> 29 </head> 30 <body> 31 <div class="grid"> 32 <div class="first">A</div> 33 <div class="second">A</div> 34 </div> 35 36 </body> 37 </html>