Code blocks use a variable-width font

Ken g6

Programming Moderator, Elite Member
Moderator
Dec 11, 1999
16,252
3,848
75
It seems to be an issue in the CSS. Fixed-width is normal for code blocks, and there's a style to use fixed-width:
Code:
code, kbd, pre, samp {
  font-family: monospace,monospace;
  font-size: 1em;
}
But it's overridden:
Code:
.bbCodeCode code {
  font-family: inherit;
}