CSS “overflow” culls “background-color”

后端 未结 5 1158
再見小時候
再見小時候 2021-02-02 09:21

I\'m trying to style blocks of code for a website. The container div is set to overflow both vertically and horizontally. The problem is when it overflows horizontally, the zebr

5条回答
  •  借酒劲吻你
    2021-02-02 09:55

    Try:

    .codeblock pre, .codeblock pre code {
      display: inline-block;
    }
    

    This worked for me in Safari.

提交回复
热议问题