固定幅の中央の透明なギャップを持つ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