JQuery Scrollable Text

前端 未结 3 1817
旧巷少年郎
旧巷少年郎 2021-01-28 09:47

I\'m searching for a jquery plugin that will bound text inside a scrollable box. Most of the scroll plugins are converting the browser scroll bar but I want to keep that as it i

3条回答
  •  孤城傲影
    2021-01-28 10:11

    Make sure you specify a fixed width and height for your container div, in your case, the div with the class Information. Add this to your CSS file.

    .Information {
        height: 300px;
        width: 300px;
    }
    

提交回复
热议问题