Horizontal scroll bar does not appear

0

I'm having problems because:

The page can go up or down thanks to the vertical bar but the horizontal bar does not appear and is in "auto" and I lose a lot of data from the page that if it gets smaller the window does not appear.

.wrapper {
  height: 100%;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
    
asked by Alberto Cepero de Andrés 29.06.2017 в 23:33
source

1 answer

1

If you want the scroll bar to be shown in some html element (like a div) you can use:

overflow-y: scroll;

This tells your item that if your children exceed your width, then you should show the scroll bar to be able to show the "excess" content.

    
answered by 29.06.2017 / 23:39
source