I have a div i want to make it scroll top . when i set its height to pixel that time i am getting the scroll but when i am setting it to percent i am not getting scroll
<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%';
}
How will i do this,how can i convert pixel to percent ?? please help