Make Text Scrollable Within Div
I Am Looking to Make Some Lengthy Text Contained into a Div Where the Text Can Be Viewed by Scrolling up or Down. Right Now the "Description" Text Is Rendered...
I am looking to make some lengthy text contained into a div where the text can be viewed by scrolling up or down.
Right now the "description" text is rendered like so <%= @pin.description.html_safe %> and is inside a <div class="panel-body> (I'm using Bootstrap).
1 Answer
Give your div a height and set overflow: scroll
#elementId{
height: 200px;
overflow: scroll;
}
If you only want it to scroll up/down and not left/right use:
overflow-y: scroll;