首先你的 body 跟 div 都要確認屬性是否為 100%
另外也可以用 jQuery 的作法快速實現
$(document).ready(function() {
var window = {
height : $(window).height(),
width : $(window).width();
}
$('.full-image-section').css({
'height' : window.height,
'width' : window.width
});
});
$(window).resize(function() {
var window = {
height : $(window).height(),
width : $(window).width();
}
$('.full-image-section').css({
'height' : window.height,
'width' : window.width
});
});