block-zero-height-2c.html (428B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style type="text/css"> 5 html, body { 6 margin-top: 0; 7 } 8 #a { 9 background-color: green; 10 } 11 #c { 12 margin-top: 30px; 13 margin-bottom: 40px; 14 height: 0; 15 } 16 #d { 17 height: 10px; width: 100px; 18 background-color: red; 19 } 20 #e { 21 height: 20px; 22 background-color: green; 23 } 24 </style> 25 </head> 26 <body> 27 <div id="a"> 28 <div id="b"></div> 29 <div id="c"> 30 <div id="d"></div> 31 </div> 32 </div> 33 <div id="e"></div> 34 </body> 35 </html>