For example: https://almanac.httparchive.org/en/2020/css#usage-of-different-grid-layout-techniques

Compared to Chrome and Firefox:

Looks to be due to this word-wrap:
|
pre { |
|
margin: 0; |
|
word-wrap: break-word; |
Which is not needed since we allow overflows here:
|
.code-block, |
|
pre { |
|
overflow-y: hidden; |
|
overflow-x: auto; |
Guess we should remove the word-wrap but need to see if any other unintended consequences so opening issue for now.,
For example: https://almanac.httparchive.org/en/2020/css#usage-of-different-grid-layout-techniques
Compared to Chrome and Firefox:
Looks to be due to this
word-wrap:almanac.httparchive.org/src/static/css/2019.css
Lines 1482 to 1484 in e2c77cc
Which is not needed since we allow overflows here:
almanac.httparchive.org/src/static/css/page.css
Lines 791 to 794 in e2c77cc
Guess we should remove the
word-wrapbut need to see if any other unintended consequences so opening issue for now.,