Earlier quoted context omitted.
The shifting page layout is a symptom of a broader problem, in that it's impossible to accurately predict or specify the rendered dimensions of text. Even measuring a container after the fact is unreliable because of the arbitrary amount of whitespace in different fonts. You'd have to generate a bitmap image and detect a bounding box around the pixels, which definitely won't help with loading times. This can't be don…
"Legible" is a funny way to misspell "perfectly representative of the artist's unique and precious vision".
Web fonts, boy, I don't know
301–310 of 333 posts
Re: Web fonts, boy, I don't know
#302Earlier quoted context omitted.
My experience has been web designers are strongly in either the "system fonts are an abomination before God" camp, or the "the user picked the system fonts, lets use those." camp. Oddly pulling them from one camp into the other seems very very difficult.
What happens when a user makes their system font esoteric-new-age-web-sans-font-#523626263278 and your page and the system itself are using the same font?
Re: Web fonts, boy, I don't know
#303Earlier quoted context omitted.
The shifting page layout is a symptom of a broader problem, in that it's impossible to accurately predict or specify the rendered dimensions of text. Even measuring a container after the fact is unreliable because of the arbitrary amount of whitespace in different fonts. You'd have to generate a bitmap image and detect a bounding box around the pixels, which definitely won't help with loading times. This can't be don…
Counting pixels is primitive; accepting text layout variance and making the web page look good with all variants and renderings of any reasonable font is less primitive.
Re: Web fonts, boy, I don't know
#304Earlier quoted context omitted.
Usually, it's done for consistent layout. (Many people in this thread have said they do not value consistent layout. Nor do I, but that is the usual reason.)
The whole point of HTML was that the layout was done by the browser to fit the users screen. If your site is fixed width, you're doing it wrong. And I realize that a lot of places are doing it wrong.
Less so nowadays, where HTML is used for layouts closer to say, PDFs.
Re: Web fonts, boy, I don't know
#305Earlier quoted context omitted.
Actually, I think he meant it literally: http://www.earthkind.com/blog/fact-or-fiction-do-mice-really...
What a great example of really bad webfont. That page almost broke my eyes, when saving island of bold fb comments came to the rescue. People lost in thin-line madness.
Re: Web fonts, boy, I don't know
#306I'm regularly annoyed by the flash when loading the Docker documentation, e.g. http://docs.docker.com/engine/reference/builder/ It's annoying enough to warrant using Stylish to override the web font.
Is this because of the web fonts or because of markdown rendering?
Re: Web fonts, boy, I don't know
#307Earlier quoted context omitted.
"Legible" is a funny way to misspell "perfectly representative of the artist's unique and precious vision".
Whatever you want to call it when text can barely be read, falls out of alignment, or disapears entirely because a font renders at a fraction or multiple of the size of the desired font, despite being the same "size" in "centimeters" or "pixels" or "ems", or when hair-thin text that looks great on an iRetina is rendered on low-density screens, etc.
Re: Web fonts, boy, I don't know
#308Earlier quoted context omitted.
> Would love an attribute on script and link tags that could be conditional based on connection speeds. I can't help but think of Android's "battery saver" toggle, which leaves me wondering why there's a battery waster feature and why it's on by default.
The opposite of saving is not wasting, it's spending . It's only a waste if you spend it badly.
Re: Web fonts, boy, I don't know
#309For web fonts in emails, look no further than my latest package `custom-fonts-in-emails` for Node.js. https://github.com/crocodilejs/custom-fonts-in-emails#custom...
Re: Web fonts, boy, I don't know
#310I have had the exact experience in the last month. Being on a slow connection, I've come to loath web fonts. There is nothing wrong with them in general but it's just that they've come to symbolise over-indulgence and a myopia towards the users actual task-focused needs as opposed to aesthetics. Part of the issue is dealing with progressive enhancement as far as slow internet connections go. How do you solve that pro…