1096224-1-ref.html (550B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <style> 6 .outer { 7 padding: 2px; 8 border: 1px solid black; 9 background: #ddd; 10 width: 200px; 11 } 12 .inner { 13 width: 50px; 14 height: 50px; 15 background: yellow; 16 } 17 .foo { 18 margin-left: 100px; 19 margin-right: 50px; 20 margin-top: 20px; 21 margin-bottom: 5px; 22 } 23 .bar { 24 margin-left: 50px; 25 margin-right: 100px; 26 margin-top: 5px; 27 margin-bottom: 20px; 28 } 29 </style> 30 </head> 31 32 <body> 33 34 <div class="outer"> 35 <div class="inner foo"> 36 </div> 37 <hr> 38 <div class="inner bar"> 39 </div> 40 </div> 41 42 </body> 43 </html>