關于向上移動的問題無法達到預期的效果
關于向上移動的問題,如果不給st-panel加上邊框,則向上移動-100%時,沒有達到預期的效果
上面總是有一個很大的空隙,
加邊框之前的代碼::
.st-scroll,
.st-panel
{
width:100%;
height:100%;
position:relative;
left:0px;
top:0px;
}
但是加上border之后就正常了
.st-scroll,
.st-panel
{
width:100%;
height:100%;
position:relative;
left:0px;
top:0px;
border:1px solid red;
}
加之后的代碼