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