How to make Twitter Bootstrap's
 blocks scroll horizontally?

后端 未结 4 1362
谎友^
谎友^ 2021-01-30 10:29

Per the examples https://getbootstrap.com/docs/4.3/content/code/#code-blocks, bootstrap only supports vertically-scrollable and word-wrapped

 blocks out          


        
4条回答
  •  时光取名叫无心
    2021-01-30 11:03

    Newer versions of Bootstrap apply styles to both pre and code that wrap words. Adding this to my stylesheet fixed the issue for me:

    pre code {
            white-space: pre;
            word-wrap: normal;
    }
    

提交回复
热议问题