Wan*_*uta 15
试试position: fixed.这将把任何块元素(div,image)定位在相对于页面的固定位置.滚动时元素将保留在那里(平板电脑/移动设备除外).例如:
div#bottom {
position: fixed;
bottom: 0;
/* And if you want the div to be full-width: */
left: 0;
right: 0;
}
Run Code Online (Sandbox Code Playgroud)
Chr*_*CVB -1
#mydivid{
position : fixed;
bottom : 0;
}
Run Code Online (Sandbox Code Playgroud)
会做的工作。