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
Try:
.codeblock pre, .codeblock pre code { display: inline-block; }
This worked for me in Safari.