"Jagged" text?
#4868
-
Beta Was this translation helpful? Give feedback.
Answered by
stikosek
Nov 5, 2023
Replies: 1 comment 5 replies
-
This looks like an issue with font kerning and the letterspace calculation, assuming youre using the DOM renderer. Can you post the CSS rules for the terminal? Which font is used here, is that a monospace font? Which xterm version is that? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was in the process of setting it up when i noticed that it worked fine until i introduced my global CSS file. Turns out, the issue was my global selector giving all elements the font family for the rest of my website - but that made the terminal weird. After that i tried selecting everything but the terminal element & its children, which didn't work. Then i simply selected all text elements (h1, h2, p, etc.) and that actually fixed it.
Thank you for your help, if i didn't try reproducing the problem like you told me i would be still head banging 😄.