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 like so <%= @pin.description.html_safe %> and is inside a <divmb0 "> 1

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; 

JSFIDDLE

0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like