multicol-oof-inline-cb-001-ref.html (572B)
1 <!DOCTYPE html> 2 <style> 3 section { 4 width: 300px; 5 height: 100px; 6 border: blue 1px solid; 7 } 8 .cb { 9 position: relative; 10 } 11 abs { 12 position: absolute; 13 background: purple; 14 width: 100px; 15 height: 50px; 16 } 17 abs.p0 { 18 top: 0; left: 0; 19 background: blue; 20 } 21 </style> 22 <body> 23 <section> 24 123 25 <span class="cb"> 26 456<br> 27 7 28 <abs></abs> 29 <abs class="p0"></abs> 30 </span> 31 </section> 32 33 <!-- Same --> 34 <section> 35 123 36 <span class="cb"> 37 456<br> 38 7 39 <abs></abs> 40 <abs class="p0"></abs> 41 </span> 42 </section> 43 </body>