line-clamp-with-abspos-001-ref.html (386B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Reference</title> 4 <style> 5 .clamp { 6 font: 16px / 32px serif; 7 padding: 0 4px; 8 white-space: pre; 9 background-color: yellow; 10 } 11 .abspos { 12 position: absolute; 13 top: 0; 14 left: 0; 15 width: 20px; 16 height: 20px; 17 background-color: skyblue; 18 } 19 </style> 20 <div class="clamp"><div class="abspos"></div>Line 1 21 Line 2 22 Line 3 23 Line 4…</div>