如何创建具有固定宽度中心透明间隙的 100% 固定页脚?没有脚本!
以这种方式展开 <<< _ __ _ __固定宽度间隙__ _ __ _ >>> 以这种方式扩展
我自己的解决方案
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;
}
在此处查看实时数据: http ://www.dreamtek.info