block-ellipsis-009-ref.html (331B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Reference</title> 4 <style> 5 .clamp { 6 color: teal; 7 } 8 .inner-first-line { 9 color: purple; 10 font-weight: bold; 11 font-style: italic; 12 font-size: 1.5em; 13 } 14 </style> 15 <div class="clamp"> 16 Line 1<br> 17 Line 2 18 <div> 19 <span class="inner-first-line">Line 3</span>… 20 </div> 21 </div>