Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CSS display vertical scrollbar on pre tag

Tags:

I am trying to get the vertical scrollbar to show in Chrome running latest version 21 when the content of a pre tag overflows. I can't get the vertical scrollbar to actually display though.

See this jsFiddle: http://jsfiddle.net/justink101/2tJmC/

EDIT

On Mac - OSX

like image 339
Justin Avatar asked Sep 14 '12 05:09

Justin


1 Answers

http://jsfiddle.net/UTYzd/

you are loading css from external file: bootstrap-combined.min.css try to change the following:

word-break word-wrap white-space

pre {     height: auto;     max-height: 200px;     overflow: auto;     background-color: #eeeeee;     word-break: normal !important;     word-wrap: normal !important;     white-space: pre !important; }​ 
like image 194
Ghassan Elias Avatar answered Sep 21 '22 15:09

Ghassan Elias