The Immortal Jellyfish (2015)
amnh.org
The Immortal Jellyfish (2015)
1–10 of 16 posts
Re: The Immortal Jellyfish (2015)
#2Re: The Immortal Jellyfish (2015)
#3Re: The Immortal Jellyfish (2015)
#4 font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
Seems like sites with notoriously nice UI (e.g. Stripe) all like to use it.Re: The Immortal Jellyfish (2015)
#5If anyone is wondering why the body text on this page looks so beautiful, it's this sneaky CSS property: font-smoothing: antialiased; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale Seems like sites with notoriously nice UI (e.g. Stripe) all like to use it.
① I believe this only affects macOS, and has no effect on any other platform.
② There’s no such property as font-smoothing. Only -webkit-font-smoothing and -moz-osx-font-smoothing, with their different values.
③ Attempting to control this is highly controversial. You may prefer it one way, but others may prefer it otherwise. See, for example, https://usabilitypost.com/2012/11/05/stop-fixing-font-smooth.... (Note that discussion of these things tends to be from 7–15 years ago. I have no idea what the present situation is; I know macOS largely eschews subpixel antialiasing these days, so maybe the effect of this property has changed now, or maybe it literally does nothing, I don’t use macOS.) As a generalisation, you should not do things like this, but leave it to the platform or the user to decide. Features like this don’t tend to end up part of the standardised web platform, because you normally shouldn’t be able to control them, and when people control them, they’re normally doing so in order to work around platform-specific issues, or just because they’re copying and pasting what someone else did without understanding.
Re: The Immortal Jellyfish (2015)
#6If anyone is wondering why the body text on this page looks so beautiful, it's this sneaky CSS property: font-smoothing: antialiased; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale Seems like sites with notoriously nice UI (e.g. Stripe) all like to use it.
Three things: ① I believe this only affects macOS, and has no effect on any other platform. ② There’s no such property as font-smoothing. Only -webkit-font-smoothing and -moz-osx-font-smoothing, with their different values. ③ Attempting to control this is highly controversial. You may prefer it one way, but others may prefer it otherwise. See, for example, https://usabilitypost.com/2012/11/05/stop-fixing-font-smooth.…
> As a generalisation, you should not do things like this, but leave it to the platform or the user to decide.
Tailwind also does it (e.g. see the CSS behind this page [2]). Those guys wrote probably my all-time favourite resource on UI design [3], so I do put value on little tricks like this that they're using.
1. https://developer.mozilla.org/en-US/docs/Web/CSS/font-smooth
Re: The Immortal Jellyfish (2015)
#7If anyone is wondering why the body text on this page looks so beautiful, it's this sneaky CSS property: font-smoothing: antialiased; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale Seems like sites with notoriously nice UI (e.g. Stripe) all like to use it.
Re: The Immortal Jellyfish (2015)
#8Re: The Immortal Jellyfish (2015)
#9If anyone is wondering why the body text on this page looks so beautiful, it's this sneaky CSS property: font-smoothing: antialiased; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale Seems like sites with notoriously nice UI (e.g. Stripe) all like to use it.
didn't know that trick, do you have some other cool ones?
Re: The Immortal Jellyfish (2015)
#10Earlier quoted context omitted.
didn't know that trick, do you have some other cool ones?
Only other trick I know is the super white trick which is whiter than the brightest white
How do you do that? That sounds cool! Make everything else #eee?