關(guān)于向上移動(dòng)的問題無法達(dá)到預(yù)期的效果
關(guān)于向上移動(dòng)的問題,如果不給st-panel加上邊框,則向上移動(dòng)-100%時(shí),沒有達(dá)到預(yù)期的效果
上面總是有一個(gè)很大的空隙,
加邊框之前的代碼::
.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;
}
加之后的代碼