我有一个 div 我想让它滚动到顶部。当我将其高度设置为像素时,我正在滚动,但是当我将其设置为百分比时,我没有滚动
<div id="lblAlert" runat="server" class="warning-message" style="overflow:auto" >
// working code
scrollfun()
{
lblAlert.style.height = 65;
}
// not working code
scrollfun()
{
lblAlert.style.height = '2%';
}
我将如何做到这一点,如何将像素转换为百分比?请帮忙