Only show scrollbar when page scrolls in css

后端 未结 5 1199
梦毁少年i
梦毁少年i 2021-01-13 11:40

I have an html page of different kinds of images in a

with following CSS property:

.images_container {
   position: relative;
   hei         


        
5条回答
  •  花落未央
    2021-01-13 12:04

    It's an automatic feature,

    you may try to set :

    overflow : scroll;
    

    to force it to work as you wanted.

    You can also try overflow-x or overflow-y, depending on the axis you're scrolling.

提交回复
热议问题