Create a one-size box with a scroll bar

0

I want to create a box that has a unique size, but that has a scroll bar in it to view the complete content.

I want to use this to detail something.

    
asked by anonymous 25.04.2017 / 17:23

2 answers

1

In CSS add

overflow: scroll;
    
25.04.2017 / 17:27
1

In the element class add:

overflow-x : scroll;
    
25.04.2017 / 17:35