Stefano’s Linotype: Why Programmers Suck at CSS Design (CSS Guide)
1–10 of 45 posts
Re: Stefano’s Linotype: Why Programmers Suck at CSS Design (CSS Guide)
#2Re: Stefano’s Linotype: Why Programmers Suck at CSS Design (CSS Guide)
#3Nevertheless, generally good advice, except the bits about filling your page with "lorem ipsum", and about not using black for the main text. The off-black/off-white stuff looks good when you take an image of the page and stand back 10 feet, but for people like me (ie without perfect eyes) is a complete pain when actually reading it.
Re: Stefano’s Linotype: Why Programmers Suck at CSS Design (CSS Guide)
#4Re: Stefano’s Linotype: Why Programmers Suck at CSS Design (CSS Guide)
#5Re: Stefano’s Linotype: Why Programmers Suck at CSS Design (CSS Guide)
#6The title is pretty bad. Nothing earth shattering there and nothing that is specific to programmers. It's just that often times the programmer gets stuck implementing it because they have the technical smarts. I've seen similarly bad designs come from most corners of the company and from completely tasteless visual designers. It's not just programmers who commit design crimes. Nevertheless, generally good advice, exc…
Re: Stefano’s Linotype: Why Programmers Suck at CSS Design (CSS Guide)
#7The title is pretty bad. Nothing earth shattering there and nothing that is specific to programmers. It's just that often times the programmer gets stuck implementing it because they have the technical smarts. I've seen similarly bad designs come from most corners of the company and from completely tasteless visual designers. It's not just programmers who commit design crimes. Nevertheless, generally good advice, exc…
What's wrong with using dummy text? How else can you ensure that as the content expands the page will not break?
Re: Stefano’s Linotype: Why Programmers Suck at CSS Design (CSS Guide)
#8 My suggestion for you is to do the following: start
your CSS stylesheet with
html {
font-size: 62.5%;
}
NO, NO, AND NO! I set my font size to what it is for a reason. Web designers need to learn to deal with it. If you're manually tweaking font sizes, you're doing it wrong. Please, leave them at the default values; they're that way for a reason. I want a website that doesn't cause eye strain. Make sure your site scales, and things work without absolute pixel sizes.Re: Stefano’s Linotype: Why Programmers Suck at CSS Design (CSS Guide)
#9When I read the title I was prepared to disagree but after reading the article I am convinced there is a lot I don't know about design. Good stuff.
Re: Stefano’s Linotype: Why Programmers Suck at CSS Design (CSS Guide)
#10From the article: My suggestion for you is to do the following: start your CSS stylesheet with html { font-size: 62.5%; } NO, NO, AND NO! I set my font size to what it is for a reason. Web designers need to learn to deal with it. If you're manually tweaking font sizes, you're doing it wrong. Please, leave them at the default values; they're that way for a reason. I want a website that doesn't cause eye strain. Make s…