line-clamp-with-abspos-005-ref.html (408B)
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 position: relative; 11 } 12 .abspos { 13 position: absolute; 14 top: 0; 15 left: 0; 16 width: 20px; 17 height: 20px; 18 background-color: skyblue; 19 } 20 </style> 21 <div class="clamp"><div class="abspos"></div>Line 1 22 Line 2 23 Line 3 24 Line 4…</div>