text-overflow-ellipsis-multiline-001.html (395B)
1 <!DOCTYPE html> 2 <title>Test multiline ellipsis with `::first-line`</title> 3 <link rel="match" href="reference/text-overflow-ellipsis-multiline-001-ref.html"> 4 <link rel="help" href="https://drafts.csswg.org/css-ui-3/#ellipsing-details"> 5 <style> 6 div { 7 width: 6ch; 8 overflow: hidden; 9 text-overflow: ellipsis; 10 } 11 div::first-line { 12 color: orange; 13 } 14 </style> 15 <div> 16 1234567<br> 17 1234567 18 </div>