http://jsfiddle.net/hs2WT/1/
Just use multiple divs ...
CSS:
html { height: 100%; } body { height: 100%;} .wrapper1 { width: 100%; height: 100%; background: url('http://khill.mhostiuckproductions.com/siteLSSBoilerPlate//images/nav/hixs_pattern_evolution.png'); } .wrapper2 { width: 100%; height: 100%; background: url('http://khill.mhostiuckproductions.com/siteLSSBoilerPlate//images/nav/yellow1.png'); } .content { color: #fff; }
HTML:
<div class="wrapper1"> <div class="wrapper2"> <div class="content"> <p>Some Content</p> </div> </div> </div>
source share