我想頁面沒有滾動和粘腳。鉻和Firefox沒有問題。但IE 10顯示額外的填充。這是我的Jsfiddle。IE 10的填充問題與粘腳
<style>
.clearfix:after {content: "."; display: block;
clear: both; visibility: hidden;
line-height: 0; height: 0;}
.clearfix {zoom: 1;}
#fixedmenu {height:75px; background:#A2BBD5;
font-family:'Open Sans', sans-serif;
font-size:12px;}
.kapsa {min-height:574px; padding-bottom: 25px;
text-align:center;}
.w100 {width:100%;}
.maz {margin:0 auto;width:1000px;}
.footer {min-width:1000px; margin-top: -25px;
height: 25px; background:#EC2155;}
</style>
<script>
$(document).ready(function(){
$(window).resize(function() {
$('.kapsa').height($(window).height() - 100);
});
$(window).trigger('resize');
});
</script>
<div id="fixedmenu" class="w100 clearfix"></div>
<div class="kapsa maz"></div>
<div class="footer"></div>
我們看不到你的提琴,因爲你已經添加雙引號的鏈接。此外,你必須在這裏發佈一些代碼供我們看。 – Itay
對不起,我是新手:) – Jamoon