我想在构建器和构建器中的x轴和y轴上创建一个可滚动的div

时间:2016-11-16 10:42:22

标签: javascript html css

下面是我想要制作此滚动功能的页面的屏幕截图,因此在此屏幕截图中,我想为蓝线内的div的给定段落创建此功能

screenshot from page

1 个答案:

答案 0 :(得分:0)

更改行

<div id="xyz">

to

<div id="xyz" style="overflow-y: scroll;">

or you can write in your css or style tag in head as 

#xyz
    {
       overflow-y:scroll;
    }

This is working for me.