ref.html (484B)
1 <!DOCTYPE html> 2 <style> 3 .result { 4 position: relative; 5 background: green; 6 width: 100px; 7 height: 100px; 8 } 9 10 .result-child-1 { 11 background: rebeccapurple; 12 width: 10px; 13 height: 20px; 14 15 position: absolute; 16 top: 25px; 17 left: 5px; 18 } 19 20 .result-child-2 { 21 background: rebeccapurple; 22 width: 15px; 23 height: 25px; 24 25 position: absolute; 26 top: 60px; 27 left: 50px; 28 } 29 </style> 30 <div class="result"> 31 <div class="result-child-1"></div> 32 <div class="result-child-2"></div> 33 </div>