align-baseline-ref.html (426B)
1 <!DOCTYPE html> 2 <html> 3 <link href="../support/flexbox.css" rel="stylesheet"> 4 <style> 5 body { 6 margin: 0; 7 } 8 </style> 9 10 <body> 11 <div class='flexbox column align-items-flex-start'> 12 <h1>This text</h1> 13 <p>should be left aligned.</p> 14 </div> 15 16 <div style='margin-left: auto; width: max-content;' class='flexbox column align-items-flex-start'> 17 <h1>This text</h1> 18 <p>should be right aligned.</p> 19 </div> 20 </body> 21 22 </html>