block-no-content-6.html (387B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style type="text/css"> 5 #spacer { 6 height: 40px; 7 } 8 #block1 { 9 height: 20px; 10 background-color: green; 11 } 12 #margin-only { 13 margin-top: -60px; 14 margin-bottom: -40px; 15 } 16 #block2 { 17 height: 20px; 18 background-color: blue; 19 } 20 </style> 21 </head> 22 <body> 23 <div id="spacer"></div> 24 <div id="block1"></div> 25 <div id="margin-only"></div> 26 <div id="block2"></div> 27 </body> 28 </html>