text-indent-min-max-content-001-ref.html (322B)
1 <!DOCTYPE html> 2 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css"> 3 <style> 4 div { 5 border: 1px solid; 6 font: 10px Ahem; 7 text-indent: 5em; 8 } 9 .min { 10 width: min-content; 11 } 12 .max { 13 width: max-content; 14 } 15 </style> 16 <div class="min"> 17 12<br>456<br>89012 18 </div> 19 <div class="max"> 20 12 456 89012 21 </div>