Looking to create a fixed footer with a transparent gap at the center that is 100% fixed width? No scripts needed!
EXPAND THIS WAY <<< ______ FIXED WIDTH GAP ______ >>> EXPAND THIS WAY
MY OWN SOLUTION
HTML
<div id="Ftr">
<div id="FtrL"></div>
<div id="FtrM"></div>
<div id="FtrR"></div>
</div>
CSS
#Ftr {
position: fixed;
height: 115px;
bottom: 0;
left: 0;
right: 0;
z-index: 21;
}
#FtrL,
#FtrR {
position: absolute;
bottom: 0;
height: 100%;
width: calc(50% - 360px);
width: -webkit-calc(50% - 360px);
}
#FtrL {
background: url('../Images/Layout/footer_left.png') repeat-x;
left: 0;
}
#FtrR {
background: url('../Images/Layout/footer_left.png') repeat-x;
right: 0;
}
#FtrM {
background: url('../Images/Layout/footer_middle.png') no-repeat;
height: 115px;
width: 720px;
margin: 0 auto;
}
Check out the live example here: