Bulletproof Web Design By Dan Cederholm (Thanks Javier Julio!)

Posted October 15, 2007 at 7:00 AM

Tags: HTML / CSS, Books

On the enthusiastic recommendation by Javier Julio, I read and just finished the book Bulletproof Web Design: Improving flexibility and protecting against worst-case scenarios with XHTML and CSS. This book is awesome and a must-read for everyone in the web development industry. It has completely changed the way I think about building web site front-ends both in pointing out my limitations as a page architect as well as in teaching me a better way of doing things.


 
 
 

 
Bulletproof Web Design by Dan Cederholm (Book Cover)  
 
 
 

The book is highly accessible and does a great job of walking you through the most common web design "mistakes" and how to improve them. Along every step of the way, the CSS and XHTML are fully spelled out and thorough explanations are provided as to why thing are or are not considered bulletproof. But don't think that this is just a collection of CSS hacks and tips; bulletproof web design is about changing the very way you approach web design. It's about building meaningful XHTML and planning ahead to be flexible.

One of the nice things about the book is that it devotes a whole chapter just to tables. In a time where Tables seem to the be the kryptonite of the web development community and heards of developers go around mindlessly bleating "tables are bad, no tables", it's nice to see someone who really steps up and explains that not only are tables a requirement of valid and meaningful XHTML, but that they can also be highly styled using the full array of table tags (most of which are unknown to or ignored by front end developers).

There seems to be a ton of information in this book; and, the difference between the way you do things and the way aught to do things might seem overwhelming at first. But, I have a feeling that many of these practices become second nature as you start to use them. I think the biggest obstacle of bulletproofing a web site is going to be effectively explaining the tradeoffs of flexibility and design to your client and/or designer.

Anyway, I can't say enough good things this Bulletproof Web Design. I am really excited to start applying the new principles that I have learned in this book.


 
 
 

 
Bulletproof Web Design - This book gets and enthusiastic two thumbs up from Kinky Solutions  
 
 
 

Post Comment  |  Ask Ben  |  Permalink  |  Print Page



Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

Oct 15, 2007 at 8:33 AM // reply »
49 Comments

My manager won a copy of this at our latest user group meeting... I need to snag that from him! :) I've heard nothing but good reviews about it!


Oct 15, 2007 at 2:34 PM // reply »
92 Comments

Great success!

Thanks Ben for giving credit where credit is due! I'm real glad you finally read all the way through the book. When I read the first edition (the photo is of the second edition) back in 2005 I was blown away. It really changed the way I do development. I was already learning a lot about XHTML and CSS and going the standardized route but his "bulletproof" way of thinking really got me going.

Hopefully now you will have time to read the other books I've recommended! You are certainly not getting off the hook so easily! What do you plan to read next? And of course I expect this same treatment. :) Again glad you enjoyed the book. Sometime this week we need to sit down so I can show you what I'm working on.


Oct 15, 2007 at 3:14 PM // reply »
6,516 Comments

@Javi,

I think "CSS Mastery" is next on the list :) Looking forward to it! Also a have a few jQuery books that I supposed to read. Gonna do a big reading push in the near future.


Oct 16, 2007 at 2:09 PM // reply »
92 Comments

Ben, glad to see you will be reading CSS Mastery next. Trust me you will enjoy that book just as much. :) You'll learn a lot of neat tricks. We really should sit down sometime soon so I can show you what I'm doing CSS-wise.

Definitely let me know what jQuery books you are reading. So far I'm convinced thats the best library out there. I love coding in jQuery as its just so fun and easy. They did a great job with their UI library.


Oct 17, 2007 at 7:37 AM // reply »
6,516 Comments

@Javi,

We definitely need to get together. I took a look at some of the CSS library stuff you have going on - super impressive! You're so damn organized :)

But, agreed - jQuery is the most excellent Javascript library that I have seen. It makes things so easy.


Oct 22, 2007 at 4:20 PM // reply »
7 Comments

congratulations, Javi...you are famous!


Jun 17, 2009 at 6:29 AM // reply »
1 Comments

Great Article! Thank you for given this....


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 20, 2009 at 11:32 PM
Five Months Without Hungarian Notation And I'm Loving It
I've used headless camel case for years for not only ColdFusion variables, but also SQL tables and fields... pretty much everything involving code. I also subscribe to the "don't abbreviate and clea ... read »
Nov 20, 2009 at 11:00 PM
Five Months Without Hungarian Notation And I'm Loving It
@Marcel, Yeah, I always err on the side of longer but more readable variable names. As for the camel casing of CF methods and the headless camel casing of custom items, I get around this by always ... read »
Nov 20, 2009 at 10:56 PM
Five Months Without Hungarian Notation And I'm Loving It
I use the following and love it: my.namespace.MyComponents.functionMethodsOrUDF() CONSTANT_VALUES_OR_PROPERTIES One thing I always try is to CamelCaseBuiltInColdFusionFunctions() so others can tell ... read »
Nov 20, 2009 at 5:38 PM
Learning ColdFusion 8: CFImage Part I - Reading And Writing Images
Hi Ben, Great article. I've been looking around to see if ColdFusion image engine can programatically create the following "wrap around" effect: http://www.creativepro.com/article/photoshop-s-she ... read »
Nov 20, 2009 at 5:35 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Dave: I talked to Gert he suggested: <cfhttp method="get" url="http://{some cf website}" result="stuff" addtoken="yes" /> Note the addition of cfhttp attribute addtoken. That should persist y ... read »
Nov 20, 2009 at 5:23 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Todd, Ahh, gotcha, yeah that makes sense. ... read »
Nov 20, 2009 at 5:17 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
Ben, sorry if I didn't make this clear. You can make it work like that if you want, just put <cfset session.foo = 1> (and <cfset application.foo = 1>) in your OnRequestStart() and it reve ... read »