开发者

Scroll to top area in div

开发者 https://www.devze.com 2023-01-18 09:57 出处:网络
I have a div that has CSS as following, &开发者_StackOverflow中文版lt;div style=\"overflow-y:scroll; height:100px;\"> long Text....</div>

I have a div that has CSS as following,

&开发者_StackOverflow中文版lt;div style="overflow-y:scroll; height:100px;"> long Text....</div>

The issue is long text is shown and vertical scroll bars shown but when browsing the page div is scrolled to bottom and end of the of the long text is shown instead from beginning portion of long text.

Any way to fix this ?

Thanks


Do something like this :

<div style="overflow-y:scroll; height:100px;"> 
  <div style=" height:500px;">
     long Text.... 
  </div>
</div>
0

精彩评论

暂无评论...
验证码 换一张
取 消