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).
Asked
Active
Viewed 3.0k times
16
Cyzanfar
- 6,997
- 9
- 43
- 81
-
1you can add `panel-body some-class` and style `.some-class` with `max-height: 100px; overflow-y: auto`; – Aleksandar Jul 23 '14 at 18:22