在我制作的iPhone网站上,似乎iPhone无法处理动态高度的内容。页脚div不会被附加在页脚前面的div中的内容向下推。然后页脚和新内容最终相互“重叠”,动态div中的内容只是显示为溢出。
有什么方法可以解决这个问题吗? (无法在iPhone模拟器中重现它)
编辑,这是附加的代码:
$("#wrapper").empty();
$.each(full_playlist, function(j, current_song){
if(!current_song.now_playing){ //check that the song isnt playing
$("#wrapper").append(List.generateSong(current_song, false, true));
}
});
编辑,页脚和包装器的CSS:
footer{
margin-top:0px !important;
}
#wrapper {
height: 100%;
width: 113%;
overflow: auto;
padding-right: 5vh;
opacity: 1;
}
答案 0 :(得分:0)
添加高度:自动;解决了问题