Add scroll bar to front-end page

Project scenario:

Add scroll bar to front-end page


solution:

Add scroll bar:

style:="overflow:scroll;"

Keep the vertical scroll bar and remove the horizontal scroll bar

  overflow-x: hidden;
  overflow-y: auto;

Guess you like

Origin blog.csdn.net/migexiaoliang/article/details/127590163