How to make Twitter Bootstrap's
 blocks scroll horizontally?

后端 未结 4 1331
谎友^
谎友^ 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条回答
  •  旧时难觅i
    2021-01-30 10:48

    The trick is that bootstrap overrides both the white-space and the CSS3 word-wrap attributes for the

     element. To achieve horizontal scrolling, ensure there's this in your CSS:

    pre {
      overflow: auto;
      word-wrap: normal;
      white-space: pre;
    }
    

提交回复
热议问题