i've been trying to find a way to display sharp pixellated text in html (this is famously completely impossible, afaik)
i managed to create a font, which mostly works on my computer, but my phone decided it should look like this:

12.10.3.1 Interesting Cases of Automatic Semicolon Insertion in Statement Lists
i've been trying to find a way to display sharp pixellated text in html (this is famously completely impossible, afaik)
i managed to create a font, which mostly works on my computer, but my phone decided it should look like this:
this is famously completely impossible Not sure if you're referring to this same issue, but getting pixel art to not be blurred and minimized to hell in most programs is notoriously difficult lmao
oh it's infinitely worse with text, yeah..
on the web, image positions are aligned to the pixel grid, so you can just use css to enable nearest neighbor scaling, and set the correct width and height, and it'll always look good
but text is positioned more precisely, so it can end up blurred even if you use a 'pixellated' font (note: browsers don't support real bitmap fonts, so you have to fake it using a vector font with lines that are aligned with pixels) it depends on whether the text happens to be at an integer position or not, which you can't easily control (it also varies a lot between devices and operating systems and browsers)