/ Published in: CSS
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
.module { position: relative; } .module-fg { position: relative; z-index: 20; } .module-bg { height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 10; } .module-bg-hd, .module-bg-ft { left: 0; position: absolute; width: 100%; } .module-bg-hd { height: 10px; top: 0; } .module-bg-ft { bottom: 0; height: 10px; } /* IE6 compatibility nastiness */ * html .module { zoom: 1; } * html .module-bg { height: expression(this.parentNode.clientHeight+'px'); }