Slashdot Mirror


Spring into HTML and CSS

Simon P. Chappell writes "One of the perks of regular book reviewing is that, periodically, you'll check your mail box and discover a book waiting for you. A serendipitous surprise! I don't review all such books that I receive, but this one, Spring Into HTML and CSS by Molly E. Holzschlag, stood out from the crowd and I felt that I should share my thoughts on it with you." Read on for Chappell's brief review. Spring into HTML and CSS author Molly E. Holzschlag pages 316 (18 page index) publisher Addison Wesley rating 9.5 out of 10 reviewer Simon P. Chappell ISBN 0131855867 summary A great book for learning or upgrading your current skills.

Who's it for?

This seems a very clearly targeted book. It's directed towards professionals that need to work with websites, but do not necessarily have a software development background.

The Good Stuff

The approach of the book reflects the targeted audience very well. The book starts by introducing a basic HTML page and then building upon it by showing how to add text and graphic content. The next couple of chapters then show a few more advanced subjects like forms and tables. The second half of the book then moves into explaining CSS, starting with some of the basic ground rules and then moving into applying colours, styles and borders to the HTML document. The last chapter is a cookbook of classic layouts, explained clearly and with code.

Even though I'm not a typical member of the intended audience, I found the organisation of the book very well thought-out and with a good sense of flow. Each chapter builds on the preceding one, with a small set of examples that are built up through the course of the book. Each chapter is broken into one or two page "chunks," as the book itself describes them. These chunks are small discrete explanations of aspects that the chapter covers. For example, in the chapter on images, the chunks cover topics like adding alternative text to an image, specifying its height and width and using an image in a hyperlink.

For me, the combination of the chunk organisation and Molly's writing makes the book. The chunked approach fits the needs of both learning a new subject without being overwhelmed and those that want more of a reference capability. This book is not written to be a reference work, but with everything being so well partitioned, it comes close enough to meet my need for a good reference work as well. Some authors tell you about their subject, but Molly really does seem to explain it to you. A subtle difference, but one that gives this book the edge.

As a book that aims to be practical, the examples were very well chosen. There are plenty of pieces of example markup and images of the resulting rendering. The markup is nicely laid out and the images are large enough to show the effect, but not so large as to interrupt the flow of the explanation. The other nice thing about the examples, especially in the CSS section of the book, is that the examples are consistent. The same portion of text, from The Black Cat by Edgar Allen Poe, is used throughout. I found that this helped clearly show the difference between the effects being taught. The text stayed the same, only the layout changed with the new style being shown. Very effective.

Groan!

My first inclination when I saw that the book was part of a new series called "Spring into ..." was to groan and wonder when they were planning to fire the marketing non-genius that dreamt up such a bad title! Thankfully the contents more than make up for the corny name. The only other thing that bugged me was the inclusion of two appendixes with HTML and CSS reference information in them. The references are annotated very well with practical considerations, so I'm only going to knock off half a point from what would otherwise have been a perfect ten.

You can purchase Spring into HTML and CSS from bn.com. Slashdot welcomes readers' book reviews -- to see your own review here, read the book review guidelines, then visit the submission page.

131 comments

  1. whoops by hyperstation · · Score: 0, Offtopic

    thought this was another apple story...

    (first post)

  2. Break by IdleByte · · Score: 0

    Thanks Bill for that stunning report, We will return to our scheduled programming after these commercial announcements.

  3. HTML and CSS? On Slashdot? by Anonymous Coward · · Score: 5, Interesting

    Maybe the Slashdot editors should take some advice here.

    1. Re:HTML and CSS? On Slashdot? by Anonymous Coward · · Score: 1, Informative
    2. Re:HTML and CSS? On Slashdot? by warriorpostman · · Score: 4, Informative

      The alistapart web site is EXCELLENT. It's a good demo of how to take inline-style-bloated markup and convert it into something much more streamlined.


      Unfortunately, in the web projects that I work on, I see nested tables ALL over the place, and it's like pulling teeth to get some of my co-workers to stop inlining style everywhere, and nesting tables instead of retooling the layout using CSS.

    3. Re:HTML and CSS? On Slashdot? by Anonymous Coward · · Score: 0

      Good to see pudge addressing this, but it's only because of all of the past whining that this started...

    4. Re:HTML and CSS? On Slashdot? by podperson · · Score: 3, Interesting

      After tooling up a dynamic site from scratch to use CSS to do simple stuff like boxes and then running it past folks for usability and layout -- I ended up re-implementing it as a bunch of nested tables.

      Worked on more browsers.
      Was far simpler to work with.
      Looked better.

      Sad.

    5. Re:HTML and CSS? On Slashdot? by cail75 · · Score: 1, Insightful
      Worked on more browsers.
      Was far simpler to work with.
      Looked better.
      Then you did it wrong... Try Again.
    6. Re:HTML and CSS? On Slashdot? by FuzzyBad-Mofo · · Score: 1

      Ah, but the answer is staring you in the face. For each nested table your co-workers use, extract one of their teeth. For each FONT tag, kill them. Should solve the problem in no time! (although your workload may see a slight increase)

      Hey, at least they're not using Frontpage..

    7. Re:HTML and CSS? On Slashdot? by timothyf · · Score: 3, Insightful

      I'd say it depends on what you're trying to accomplish. There are still things that you can do with tables that you can't quite do with CSS, though the number of these are dwindling. IMHO, if you have to use a table for layout, it should be the most minimal table you can use, with the rest of the presentation loaded from CSS. Handwaving about CSS as a panacea doesn't solve anyone's problems.

    8. Re:HTML and CSS? On Slashdot? by BobNET · · Score: 1

      although your workload may see a slight increase

      With fewer nested tables and FONT tags, I don't think it'll increase.

    9. Re:HTML and CSS? On Slashdot? by eForRealyo · · Score: 1
      There are still things that you can do with tables that you can't quite do with CSS, though the number of these are dwindling.
      And what is 1 example of 1 thing that you are referring to?
    10. Re:HTML and CSS? On Slashdot? by timothyf · · Score: 4, Informative

      Try to mimic the behavior of valign="bottom" on a td tag using CSS with a container of variable height. To the best of my knowledge, it can't be done without tables (or by cheating and applying a display: table-cell style rule to the container, which is not supported by IE) or using a Javascript hack. Complex grid-like layouts, where your content doesn't fit into a nice 3 column layout with a header and footer--basically anything where you've got to have things align with each other vertically--require tables to work. Tables will also 'give' when the content would normally overflow a fixed-width div. Granted, most sites don't need it, but that doesn't mean that tables for layout can't be an acceptable solution under some situations. See also http://www.mezzoblue.com/archives/2004/05/15/table s_oh_th/index.php For the record, I advocate using CSS over Layout Tables whenever possible, but I'm not dogmatic about it either.

    11. Re:HTML and CSS? On Slashdot? by bigbigbison · · Score: 3, Informative

      They are working on it.

      --
      http://www.popularculturegaming.com -- my blog about the culture of videogame players
    12. Re:HTML and CSS? On Slashdot? by twofidyKidd · · Score: 1

      I haven't seen this mentioned yet, so I thought it appropriate to post as a response to your gripes:

      http://www.csszengarden.com/

      CSS Zen Garden is an extensive collection of sites designed and manufactured entirely with CSS. One caveat: most of the more intricate styles do not work well, or at all, on any other browsers besides Firefox (yet another reason to switch). If you are designing for a company intranet where the browser can be controlled by the IT department, then I'd recommend using CSS to it's greatest potential aimed at a specific browser, otherwise you'll most likely run into cross-browser functionality headaches.

      --


      Hades, PoD: Official Advocate
    13. Re:HTML and CSS? On Slashdot? by jbellis · · Score: 2, Insightful

      yes, everybody knows about czg these days, and it's been posted at least twice in this /. discussion alone.

      and in a world where well over 80% of people still use IE, you're a damn idiot to post "it works in firefox, just get all your users to switch."

    14. Re:HTML and CSS? On Slashdot? by shmlco · · Score: 1
      Then you did it wrong... Try Again.

      At least in a table when you say cellpadding="2" all the current browsers get it right, unlike CSS "padding" where some include it in the width and some don't and you have to rely on broken parser hacks to get them straight.

      There's doing it right... and doing it the hard way.

      --
      Any sect, cult, or religion will legislate its creed into law if it acquires the political power to do so.
    15. Re:HTML and CSS? On Slashdot? by Monkeyman334 · · Score: 1

      Or I could just use a table and tell on the table nazis to shut up.

    16. Re:HTML and CSS? On Slashdot? by Wantok · · Score: 2, Insightful

      cheating and applying a display: table-cell style rule to the container, which is not supported by IE

      er... using the universally-agreed standard is "cheating", because a 7-year-old browser is too broken to support it?

      riiight.

      --
      mi save tingting long peles bilong mi long Niu Ailan.
    17. Re:HTML and CSS? On Slashdot? by Shaper_pmp · · Score: 1

      When the name of the game is cross-browser-support[1], then yes, functionality known to be broken on the browser that still has 90% market share is indeed cheating.

      Or just not doing your job.

      Now, as to whether it's fair that we should have to produce broken, sketchy, brain-damaged code to support an ancient, obsolete and crumbling browser that's nevertheless obstinately squatting on the web browser market, impeding the development of the entire world wide web... no, it's not fair.

      But then since when was life, especially web design, and very especially web design that has to go anywhere near IE, ever fair?

      Footnotes:

      [1] Remember that concept? Accessibility? It's only, like, the fundamental tenet of the entire web... <:-/

      --
      Everything in moderation, including moderation itself
    18. Re:HTML and CSS? On Slashdot? by Wantok · · Score: 1

      indeed, leaving IE completely in the lurch is kind of unfriendly to the benighted masses - and the poor victims of backwards corporate browser policies :)

      my preferred approach is to use CSS progressive enhancement, with IE-specific CSS hacks where necessary, so my sites look great and work perfectly in modern browsers, and look reasonable and are at least functional in IE.

      as for accessibility, i couldn't agree more that it's what the web is about. but we're talking about cosmetics here - vertical alignment in a table cell. the alternative - using markup for non-tabular content simply to cater for visual layout deficiencies in IE - is where we start talking about poor accessibility.

      --
      mi save tingting long peles bilong mi long Niu Ailan.
    19. Re:HTML and CSS? On Slashdot? by podperson · · Score: 1

      Footers.

      It's hilarious the backwards hoops folks jump through trying to do nice footers (for dynamically generated content) using css.

      It's all very well to create static pages that look like works of art (e.g. csszengarden) but you can put a footer across the bottom of a 3 column layout trivially using a table, and -- if you're very persistent -- using rocket science level css which depends on the order the content appears in in the page (which is surely one of the main things css was supposed to avoid).

    20. Re:HTML and CSS? On Slashdot? by Anonymous Coward · · Score: 0

      Does this mean anything for being able to post international text(using unicode, or html entities, or something)?

    21. Re:HTML and CSS? On Slashdot? by ibbey · · Score: 1

      "it works in firefox, just get all your users to switch."

      But that's not what he said at all. He said (to paraphrase) if you're designing for an environment where you have control of your users browser platform, then using CSS makes sense. Otherwise you'll have headachces dealing with CSS browser issues. It would have been more clear had he broken the two seperate thoughts into distinct paragraphs, but his point was still pretty clear.

  4. This is a bad thing? by Elyscape · · Score: 5, Interesting
    The only other thing that bugged me was the inclusion of two appendixes with HTML and CSS reference information in them.
    I fail to understand how this is a bad thing. Could someone explain?
    --
    I own itburns.net. What should I put there?
    1. Re:This is a bad thing? by Saven+Marek · · Score: 1

      I would say it were better if they had been included instead of not.

    2. Re:This is a bad thing? by TheMotedOne · · Score: 1, Funny

      In Soviet Russia, the appendixes write you.

    3. Re:This is a bad thing? by Anonymous Coward · · Score: 0

      The HTML and CSS specifications make excellent reference material. I don't need an incomplete (and error prone) copy of the original sources on dead trees. Especially if I'm paying for it.

    4. Re:This is a bad thing? by suresk · · Score: 2, Interesting

      Presumably because this sort of information (updated, too) can be easily found online. Sticking it in a book only serves to make the book look thicker and perhaps justify a higher price.

      I don't really care though, if the contents of the book alone are good, no need to knock it for including reference information.

    5. Re:This is a bad thing? by /ASCII · · Score: 3, Insightful

      Why pay good money for a dead tree-version of something that will soon be obsolete when it is available through the Internet, and alway up to date?

      --
      Try out fish, the friendly interactive shell.
    6. Re:This is a bad thing? by Anonymous Coward · · Score: 0


      Obviously because of the inclusion of appendixes instead of appendices.

    7. Re:This is a bad thing? by Anonymous Coward · · Score: 0

      And old people from Korea spell the word "appendices" correctly.

      --your friendly neighborhood spelling fascist. (Remember, we're watching you)

    8. Re:This is a bad thing? by StandardDeviant · · Score: 4, Insightful

      Because not everyone wants to read documentation on a screen. Some people like to have a book open next to their keyboard, some want something they can read on the train, in a plane, etc. Dead trees also have no need for power adaptors or batteries. Neither dead trees nor e-docs are better than the other, they're just different.

    9. Re:This is a bad thing? by RM6f9 · · Score: 0, Troll

      "dead-tree version" = available to be paged through without taking up monitor space.

      "soon be obsolete"? Define soon. Maybe there are projects waiting that could be up and earning income within a couple days of receiving this information formatted in easy to digest "chunks" - do you promise it will be online as-is, and if so, when?

      "alway (sic) up to date"? please...

      The only thing worse is that some lazy butt bunch of mods dropped "insightful" points on your low-uid self.

      The only thing missing is the dread "tt" tag...

      --
      Take the 90-Day Challenge! http://rwmurker.bodybyvi.com/
    10. Re:This is a bad thing? by P0ldy · · Score: 1

      Because the person might save a few hundred bucks when, after finishing the book, they realize FrontPage isn't necessary?

    11. Re:This is a bad thing? by Gulthek · · Score: 1

      Why not just use a printer to print out the latest CSS or HTML reference sheets? Then you don't have it bound to an annoying stiff spined book (at the end of the book to boot) that wants to stay closed when you want it to stay open.

    12. Re:This is a bad thing? by SeventyBang · · Score: 1

      I tote Instant HTML around with me when I need a reference. There may be better books, but it's got what I need. It's for 4.0 and while there are changes I don't have with me, it gets me by when I need it. And while it doesn't list Opera or Firefox, it's got charts for the various tags, showing which ones are supported in IE and NN - and in which versions. Again, it's not perfect, but if I see something across the board for IE, I figure it must be IE-only and I know to avoid it. Besides, I'm willing to wager the HTML in use is restricted to a pretty significant set of tags - not much esoterica.

      I buy my own books. Then they are mine to do with what I please and go with me as I move along. So I choose to buy what I like.

      I got it five years ago (original print date 1997, reprint 2000) so I've gotten my money's worth. As far as killing trees, I figure this is part of a tree I saved from one of the annual forest fires in the Sierras.

      I figure most of the publishers trying to come out with new flavors of HTML books are doing so for a lack of imagination & creativity for other books which should be published. There are tons of those. The problem is that most of of the people who work on publishing staffs would not be customers of their own products if they didn't work there. And that's why so many topics are overlooked or misunderstood.

  5. Who's it for? by Anonymous Coward · · Score: 0

    Well from your review it seems that its for people who want to learn to 'program' html.

  6. Knowing HTML + CSS != Good Web Design by CyricZ · · Score: 2, Interesting

    Just knowing HTML and CSS does not result in web pages that are easy to use and accessible. That is something that can't be learned directly from a book. It takes a certain intuition to be able to design web pages that truly perform.

    Anyways, does this book cover XHTML at all? And what about CSS 2.0? I get the feeling from this review that this book is somewhat outdated, and does not cover such topics. I hope I am wrong in such assumptions.

    --
    Cyric Zndovzny at your service.
    1. Re:Knowing HTML + CSS != Good Web Design by the_2nd_coming · · Score: 1

      your right,but designing it so that presentation is seperate from design means that some one can easily come and fix your shitty ass site.

      --



      I am the Alpha and the Omega-3
    2. Re:Knowing HTML + CSS != Good Web Design by smackjer · · Score: 1

      Presentation and Design are really the same thing. I think what you mean is separating Structure from Design.

      --

      This is my sig. There are many like it, but this one is mine.
    3. Re:Knowing HTML + CSS != Good Web Design by Anonymous Coward · · Score: 0

      Design = Structure + Presentation.

    4. Re:Knowing HTML + CSS != Good Web Design by telbij · · Score: 3, Interesting

      Just knowing HTML and CSS does not result in web pages that are easy to use and accessible.

      Of course not, it takes a professional to know all that stuff. This book is not for a professional, in fact the reviewer mentions that right off the top.

      Anyways, does this book cover XHTML at all? And what about CSS 2.0?

      Seeing as how Molly Holzschlag is a member of the Web Standards Project, I'd assume she's presenting up-to-date information.

      That said, I remember Molly's articles in Web Design Techniques back in the day, and found them to be very fluffy and a bit self-important. Hopefully she doesn't come off that way in a how-to book such as this.

    5. Re:Knowing HTML + CSS != Good Web Design by SoSueMe · · Score: 1

      Intuition is good and will get you far.
      You should also be familiar with authoritative resources for issues like accessibility.
      You can learn HTML, CSS and much more on line.
      If you choose to go-it-alone, you might wind up as a clueless website author.

    6. Re:Knowing HTML + CSS != Good Web Design by De+Lemming · · Score: 3, Informative

      According to the Amazon description, this book covers HTML 4, XHTML 1, and CSS 2.1...

    7. Re:Knowing HTML + CSS != Good Web Design by NineNine · · Score: 1

      Just knowing HTML and CSS does not result in web pages that are easy to use and accessible. That is something that can't be learned directly from a book. It takes a certain intuition to be able to design web pages that truly perform.

      The Slashdot article I read was about a book called "Spring into HTML and CSS". It said *nothing* about web design. Don't know what the book was called in your universe, though.

    8. Re:Knowing HTML + CSS != Good Web Design by edxwelch · · Score: 1

      It should definetly cover the pros and cons of using xhtml. Some of the disadvantages of XHTML are that you can't embed flash movies straight forwardly (http://blog.deconcept.com/2004/10/14/web-standard s-compliant-javascript-flash-detect-and-embed/) .
      You cannot make tables streach to bottom of page, because html, body {width: 100%} is not supported and I think you cannot use the target= attribute.
      The only advantage that I can see is that you web page will have street cred (this is useful if you are selling web design services)

  7. Better Web Standards Book by cruppel · · Score: 5, Informative

    I reccommend http://www.zeldman.com/ for all your web-standards reading. He's even re-worked Slashdot using current web standards.

    1. Re:Better Web Standards Book by rsrsharma · · Score: 1

      Read the author line for the article. That was written by Daniel M. Frommelt. Zeldman is just one of the editors for ALA and writes once in a while, he doesn't write everything there.

    2. Re:Better Web Standards Book by Black.Shuck · · Score: 1

      All I can say is Slashdot must be absolutely minted.

      I remember reading that article when it was published almost two years ago, and Slashdot still haven't embraced web-standards, even for alleviating their bandwidth bills -- a cool $3,600 a-year saving if they followed that article.

    3. Re:Better Web Standards Book by matt+me · · Score: 4, Insightful

      zeldman.com very cool-looking site, beautiful beige and green tones, but just like alistapart.com the styling falls short because of it's use of a fixed pixel width - in a large resolution (esp wide screen of dual head), it's width capped at around 800 pixels means it looks stupid as a narrow bar down the centre of your screen, wasting useful space, and on a narrow resolution, you have to scroll horizontally. worse still if you increase the relative text size, the width doesn't grow, so you end up with very few words visible despite all the avaliable space...

    4. Re:Better Web Standards Book by the+plant+doctor · · Score: 1

      That's usually done to keep the text more readable. I find myself resizing fluid sites so I can more easily read what's on the page myself when I'm using a high res monitor. Tis also easier if we know when designing a page what width it will be. Takes one more element of Surprise!!! out of the webdesign process. It's old but there's good discussion on it here: http://photomatt.net/2003/12/11/death-of-flexible- width-designs/

    5. Re:Better Web Standards Book by prockcore · · Score: 2, Interesting

      in a large resolution (esp wide screen of dual head), it's width capped at around 800 pixels means it looks stupid as a narrow bar down the centre of your screen, wasting useful space

      You're the one who seems to be running your browser full screen.

      It's a browser window, not a browser desktop. The width of a column is inversly proportional to ease of reading.

      Until someone comes up with an easier way to do multi-column text, a fixed width is going to be required.

      It doesn't matter what resolution I'm at.. my browser window is always roughly the same size. Certainly never wider than it is tall... that's just a waste.

    6. Re:Better Web Standards Book by iangoldby · · Score: 1

      There's no real excuse for fixed-width columns now. The following CSS produces variable width up to an upper limit proportional to the font size in all browsers that support it, with a fall-back for IE.

      div#contents {
      margin: 0 auto;
      max-width: 48em;
      min-width: 12em; }
      * html div#contents {
      width: 48em; /* for IE */ }

      If you want to support IE as well, a simple bit of JavaScript will do the trick. See this site for an example.

    7. Re:Better Web Standards Book by matt+me · · Score: 1

      Hum, wondering if this lovely Firefox trunk build supports CSS 2/3 columns?

  8. It's about time... by Nytewynd · · Score: 5, Funny

    Thank goodness someone wrote a book about HTML and CSS development. There aren't enough free sites on the internet to teach you this stuff already.

    The best place to advertise this is probably /. too. Most of the readers here are probably novice developers with only basic knowledge of HTML if any at all.

    --
    /. ++
    1. Re:It's about time... by ImaLamer · · Score: 5, Insightful

      To be fair, it's not easy writing HTML/CSS on the screen while having a million tabs/windows open trying to hunt down the information you need.

      Reference material sometimes just needs to be held in your hand. Not to mention that /. readers will likely promote this book to their in-laws who beg to know how to write/design tiny, no purpose websites. It will save a few weekends for a bunch of us.

    2. Re:It's about time... by Nytewynd · · Score: 3, Insightful

      To be fair, it's not easy writing HTML/CSS on the screen while having a million tabs/windows open trying to hunt down the information you need.

      I can probably google what I need and find an example before I'd find it in the book with the index. I know what you mean about having a reference handy, but it seems that since Google, I haven't touched a single one of my reference books. All that LISP book does is collect dust these days. I don't even want to think about what might be growing on my Computer Architecture book.

      --
      /. ++
    3. Re:It's about time... by Emetophobe · · Score: 1

      I would have to agree, there is no need to read a book on the subject, there is a huge swath of information on HTML, CSS, XHTML, etc. on the internet already. Just a month ago, I decided to learn XHTML+CSS, it was pretty easy with all the great tutorial sites out there. For me, it's alot easier to learn something by actually doing it and learning through trial and error then reading a book.

      XHTML
      CSS

    4. Re:It's about time... by RM6f9 · · Score: 1

      I am a "novice developer with only basic knowledge of HTML if any at all.", you insensitive clod!
      Happy Troll Tuesday!

      --
      Take the 90-Day Challenge! http://rwmurker.bodybyvi.com/
    5. Re:It's about time... by porkface · · Score: 1

      I can't imagine it would be easy doing anything with a million tabs/windows open.

      I too think this book is way off target for the slashdot audience.

    6. Re:It's about time... by ek_adam · · Score: 1

      That's when dual monitors come in handy.

    7. Re:It's about time... by prockcore · · Score: 2, Interesting

      I can probably google what I need and find an example before I'd find it in the book with the index.

      I'd agree with that, for everything *except* html/css and javascript.

      There's so much crap out there that you'll have to wade through thousands of pages of improper CSS and javascript before you find someone who knows what they're talking about.

      Just try it.. google for the XMP tag.. tell me what it does. After 500 pages that say "it's like the PRE tag" you *might* find one that tells you that the browser passes through any tags between XMP tags. (Making it very useful to give html examples without a bunch of &lt; entities)

  9. My Favorite HTML/CSS Book by smackjer · · Score: 5, Interesting

    Designing with Web Standards by Jeffrey Zeldman. By far the most useful and informative book on the subject that I've seen. A good web designer needs to know the "why", not just the "how".

    --

    This is my sig. There are many like it, but this one is mine.
    1. Re:My Favorite HTML/CSS Book by faust2097 · · Score: 2, Informative

      Zeldman's book is good if you need to convince your boss that it's a good idea but it's alittle short on the "meat" part. He's a great writer though.

      If you're really interested in learning about CSS it's best to go straight to the source [literally, these guys helped develop the spec] and get Bert Bos and Hakon Lie's Cascading Style Sheets: Designing for the Web , it's by far to most detailed and even goes into the design reasons behind a lot of the decisions made when CSS was developed. There's a new version out now, but if you've got another source about browser support and you ignore the irrelevant WebFonts and Aural stylesheet section the second edition is pretty much the same book but probably loads cheaper.

      This book and the O'reilly XHTML book are the most useful technical references I've ever used.

    2. Re:My Favorite HTML/CSS Book by Anonymous Coward · · Score: 0

      Designing with Web Standards is good if:
      a) You already know enough (X)HTML and CSS to get by.
      and/or
      b) You're a Dreamweaver jockey.

      I have a good programming background but I don't know much (X)HTML nor CSS. The book sorely lacks in providing good syntax rules. I walked away from his CSS chapter thinking "Fine, fine, CSS is great, CSS is good, let us thank CSS for our food, but for Christ's sake, give some damn examples and syntax explainations!"

      Zeldman spends 90% of the book attacking designs that aren't standards compliant without really telling you how to follow the standards he loves so much.

    3. Re:My Favorite HTML/CSS Book by blamanj · · Score: 1

      Oh man. One look at that cover and I thought, "Written by the Unibomber." Not a good sales tool, folks. Maybe a simple abstract pattern on the next edition?

    4. Re:My Favorite HTML/CSS Book by Enrico+Pulatzo · · Score: 1

      I own Zeldman's book, and it's more or less a compilation of several A List Apart articles tied together with some questionable reasoning about XML.

    5. Re:My Favorite HTML/CSS Book by dhaines · · Score: 1

      Seemed like 1/2 of Zeldman's book was indeed a long-winded web standards sales pitch. If you're already sold and want to get to work, a more down-and-dirty, roll-up-your-sleeves kind of book is Dan Cederholm's Web Standards Solutions . It's not as entertaining as Zeldman, but I found it much more useful. I've been very happy using Cederhom's book with O'Reilly's XHTML and CSS (by Eric Meyer) guides.

    6. Re:My Favorite HTML/CSS Book by Colol · · Score: 1

      Seconded. While the Zeldman book is an entertaining read and a nice overview, it's not exactly loaded with examples and it doesn't really take you soup-to-nuts for either developing from scratch or converting an existing site. There are a lot of nice chunks, but they're almost always floating alone rather then ever assembling into a whole. I don't feel it was a waste of my money, but it's not the sort of book I regularly pull off the shelf. You could probably get more practical information by reading A List Apart for free.

      Bos and Lie's book, on the other hand, is wonderful. I borrowed it from my local library after finishing DwWS, and it really is "The Indispensible CSS Tutorial and Reference." One of Eric Meyer's CSS books (not the fish book) was another good read, but I can't find the one I'm thinking of at the moment.

    7. Re:My Favorite HTML/CSS Book by rsynnott · · Score: 1

      An affiliate link? Shame on you.

      --
      Me (Blog)
    8. Re:My Favorite HTML/CSS Book by faust2097 · · Score: 1

      It was just a test to see if Slashdot would substitute in their own referrer code, I swear! Uh, yeah!

  10. title originality? by Anonymous Coward · · Score: 0

    Isn't the title (an the cover graphic) a bit derivative of http://diveintomark.org/, and his corpus of Dive Into books and articles?

  11. Wait... by Giant+Space+Hamster · · Score: 5, Insightful

    The only other thing that bugged me was the inclusion of two appendixes with HTML and CSS reference information in them. The references are annotated very well with practical considerations, so I'm only going to knock off half a point from what would otherwise have been a perfect ten.

    Wait, why is including reference material a negative? Isn't that an advantage to the user, all relevant information collected in one place?

    1. Re:Wait... by forkazoo · · Score: 1

      It is often an effort to fatten up a book, without providing benefit, but not being hard to do. If it just repeats information that is readily available in the book, then it is a waste. If it has lots of information that isn't in the book, the why didn't the author want to talk about it?

      It can be done well, or it can be done poorly. In a book on a foreign language, I expect a dictionary section at the back, even though all the foreign word are already scattered throughout the book.

      OTOH, a math book which has an appendix dedicated to ten pages each of digits of the ten most important trancendental numbers, well, that has no point, and is probably disjoint from the rest of the book. Another example would be copying man pages directly into the back of the book. I can just use "man," or read the information in the book, don't need it duplicated. I could print out the man pages myself if I need them as dead trees.

    2. Re:Wait... by Jerf · · Score: 1

      Wait, why is including reference material a negative? Isn't that an advantage to the user...?

      Opportunity cost.

  12. Sounds very basic... by inkdesign · · Score: 4, Informative

    Based on the review, it sounds like this covers topics so basic; one would be better served by a resource such as w3schools, or something along those lines. I recommend the Zen of CSS Design, which I found to be a great read for those who have gotten the basics down.

  13. Hmmmm.. by Anonymous Coward · · Score: 0

    I guess Im not a regular book reviewer, because the book I thought I was getting ended up being a bomb.

  14. Re:Knowing HTML by Yobgod+Ababua · · Score: 1

    I think what he actually meant was separating _content_ and design. Structure is generally part of the design (CSS) rather than the content (HTML).

  15. Re:Knowing HTML by Anonymous Coward · · Score: 0

    you content, however, should be semantically structured using valid markup and styled(designed) using CSS. he meant what he meant.

  16. She's got her hand on his thigh again by Anonymous Coward · · Score: 0

    You really do have to stop giving such
    great reviews just because she likes you
    so much - people will talk...

  17. ok you can make a web page now.. by Anonymous Coward · · Score: 0

    and you have no idea about the basics of design.. just like the author of the book.. ugh.. that web page hidious.. the only thing worst is a thai page with bad midi in the background..

  18. It's about time by ChrisF79 · · Score: 4, Funny

    (begin sarcasm)
    Wow, it's about time someone wrote a book about HTML and CSS. I went to the Barnes and Noble and couldn't find a single one on the subject. Are they trying to keep this stuff a secret?
    (end sarcasm)

    --
    Finance tutorials and more! Understandfinance
    1. Re:It's about time by Anonymous Coward · · Score: 1, Funny

      (begin sarcasm)
      Wow, it's about time someone wrote a book about HTML and CSS. I went to the Barnes and Noble and couldn't find a single one on the subject. Are they trying to keep this stuff a secret?
      (end sarcasm)


      Wow, about time someone finally decided to tag very hidden sarcasms. The joe-user filled population of slashdot wouldn't have noticed it!

    2. Re:It's about time by Anonymous Coward · · Score: 0

      (/irrelevant)(/unfunny)

      You forgot to close two tags. I fixed it for you. You're welcome.

    3. Re:It's about time by HeliumHigh · · Score: 0
      Ohh come now! Atleast format it properly!

      It's about time

      Wow it's about time someone wrote a book about HTML and CSS. I went to the Barnes and Noble and couldn't find a single one on the subject.
      Are they trying to keep this stuff a secret?



  19. Targeted? by jkliff · · Score: 2, Funny

    This seems a very clearly targeted book. It's directed towards professionals that need to work with websites, but do not necessarily have a software development background. And how is this supposed to be "clearly targeted"?

  20. Stood Out? by Anonymous Coward · · Score: 0

    I don't review all such books that I receive, but this one, Spring Into HTML and CSS by Molly E. Holzschlag, stood out from the crowd and I felt that I should share my thoughts on it with you.

    Why, was the bookmark they included a check?

  21. The problem with big words by Anonymous Coward · · Score: 0, Flamebait

    The problem with big words like "serendipitous" is that if you use them without knowing what they mean, you just sound foolish. Serendipity refers to making fortunate discoveries by accident; finding a package in your mailbox is not serendipitous - that's precisely where you'd expect to find such a package.

    1. Re:The problem with big words by kfg · · Score: 2, Funny

      I believe that the author was refering to the contents of the package, i.e. a book.

      Now who woulda thunk that a book might end up in a package sent to a book reviewer? Clearly the universe works in mysterious ways.

      KFG

    2. Re:The problem with big words by heatdeath · · Score: 1

      And saying something that is clearly (contextually) wrong for the purposes of humor has no absolutely no precedent in language.

      He couldn't have possibly meant it humorously.

      --
      I'm sorry. The number you have reached is imaginary. Please rotate your phone 90 degrees and try again.
    3. Re:The problem with big words by Anonymous Coward · · Score: 0

      I might have believed that it was meant humorously if it was actually funny. But it wasn't. At all. Not even slightly. (cf adding an exclamation mark does not make a phrase into a quip, much less a joke).

    4. Re:The problem with big words by roie_m · · Score: 1

      And saying something that is clearly (contextually) wrong for the purposes of humor has no absolutely no precedent in language.

      Can you give us an example of that? :-)

  22. Non-soul-sucking link by Anonymous Coward · · Score: 0
  23. Hey, when you are done.... by wowbagger · · Score: 2, Funny

    Hey, when you are done with the book, how about you send it on to someone who needs it?

  24. Izzat So? by lheal · · Score: 2, Interesting

    Usually I dislike details about a reviewer being included in a review, but:

    Even though I'm not a typical member of the intended audience, I found the organisation of the book very well thought-out and with a good sense of flow.

    The reviewer doesn't say what his background is, so it's hard to judge his claim not to be a typical member of the intended audience. Claiming it without some explanation makes me wonder what he means, and even why I should read on.

    Perhaps he found the organization of the book well thought out because he's atypical?

    --
    Raise your children as if you were teaching them to raise your grandchildren, because you are.
  25. Spring? by smileyy · · Score: 1

    I can dependency-inject my CSS files? Finally!

    --
    pooptruck
  26. dude, my ass site is NOT shitty by Anonymous Coward · · Score: 0

    you insensitive clod.

  27. HUH by Anonymous Coward · · Score: 0

    What the heck does serendipitous mean? Anyone?

    1. Re:HUH by kfg · · Score: 1

      What the heck does serendipitous mean?

      Not what the author seems to think it means. I hope he doesn't use that word a lot.

      KFG

    2. Re:HUH by weslocke · · Score: 2, Informative

      Main Entry: serendipitous
      Pronunciation: "ser-&n-'di-p&-t&s
      Function: adjective
      : obtained or characterized by serendipity
      - serendipitously adverb

      Main Entry: serendipity
      Pronunciation: -'di-p&-tE
      Function: noun
      Etymology: from its possession by the heroes of the Persian fairy tale The Three Princes of Serendip
      : the faculty or phenomenon of finding valuable or agreeable things not sought for


      Therefore it was a nice surprise finding it in the mailbox since he hadn't requested it from the publisher.

      His use was just fine.

      webster.com, people.

      --

      'Life is like a spoonful of Drain-O, it feels good on the way down but leaves you feeling hollow inside'
    3. Re:HUH by kfg · · Score: 1

      He is a book reviewer. He seeks books to review. Publishers send them to him because he is a book reviewer.

      The relationship is causal and happens often enough, by the author's own admission (since this is the way things work, most books for review arrive unsolicited), that the author expects it to happen.

      If I jump out of an airplane the arrival of the ground may surprise me, but it is not serendipitous. The fortuitous arrival of a haytruck right underneath me at just the right time would be.

      Inheriting a million bucks from a relative you've never heard of is simply good fortune. Inheriting a million bucks from a relative you've never heard of just in time to save you from forclosure on your house is serendipitous because it a valuable and agreeable thing.

      A better way of phrasing "not sought for" would be "aquired by chance and the defintion would be made better by appending the phrase "while seeking something else."

      http://livingheritage.org/three_princes.htm

      The only way a book reviewer receiving an unsolicited book in the mail could become serendipitous is if the arrival of that particular book was more valuable and/or agreeable for some reason noncausally connected to his merely being a book reviewer than some other book would be.

      Like if a publisher had just asked him for a review of an HTML book for executives. An unsought for coincidence that nonetheless gives the feeling that there is some mysterious causal relationship at work.

      Serendipity is entirely defined by the context in which the finding of the valuable thing occurs.

      KFG

  28. Slipping review quality here by Anonymous Coward · · Score: 0

    One of the perks of regular book reviewing is that, periodically, you'll check your mail box and discover a book waiting for you. A serendipitous surprise!

    Okay, so we start with a "hey, look how cool I am receiving free books in the mail."

    I don't review all such books that I receive, but this one, Spring Into HTML and CSS by Molly E. Holzschlag, stood out from the crowd and I felt that I should share my thoughts on it with you.

    And continue with "if I don't review them all, I'm seen as objective, but still get to keep all the books".

    Anyway thanks for sharing "your thoughts" about the book, but, erm, that's not really what a proper review is about.

  29. Unqualified by BarryNorton · · Score: 1

    The author is not qualified to review this book, especially not for a savvy audience like that of Slashdot. A 'don't worry I'm only a beginner too' review (check his blog) can seem very comforting and empathic, but Simon Chappell clearly cannot even speculate on the completeness of this work, nor it's adherence to, and promotion of, best practices.

    1. Re:Unqualified by The+Masked+Rat+Fink · · Score: 1

      Unqualified? Interesting. Which part of 16 years earning my employment as a programmer and then a technical lead would disqualify me to comment on technical matters?

      Also, the link you gave for my blog is actually my personal website http://www.simonpeter.com/ my blog is hosted at blogspot. http://uab.blogspot.com/

      --
      simonpeter.org | simonpeter.com | techbook.info
    2. Re:Unqualified by BarryNorton · · Score: 1
      Unqualified? Interesting. Which part of 16 years earning my employment as a programmer and then a technical lead would disqualify me to comment on technical matters?
      Exactly the same part that would make me unqualified to review a book on object-relational DBMSs (stab in the dark - I don't know what your specialism is beyond OOP about which I also have quite a bit of experience, both as a practitioner - I've also been a technical lead in the industry, myself on C++ projects - and a researcher), or that would make you unqualified to lecture on process algebra.

      These are all 'technical matters', but we all have our specialisms, and areas where we just hack. I meant no disrespect to you, only to the editorial policy here; a review by a non-expert is not news, it's blog-worthy (and I quoted your homepage because you admit there that you're just learning to hack CSS right now - my apologies for calling it a blog just because it looks like one!)

  30. My personal favourite reference by jb.hl.com · · Score: 2, Informative

    Index dot CSS
    Index dot HTML

    Just the facts for me...

    --
    By summer it was all gone...now shesmovedon. --
  31. Re:Knowing HTML by smackjer · · Score: 2, Informative

    No, structure is defined in the HTML (or XHTML). CSS defines how you present that structure (the design).

    Content is independent of both structure and design.

    --

    This is my sig. There are many like it, but this one is mine.
  32. Save Some Money by Anonymous Coward · · Score: 0

    Save more than $3 by ordering here: Spring into HTML and CSS

  33. quirksmode.org by t_allardyce · · Score: 4, Informative

    http://quirksmode.org/

    Amazing site, this guy has done some painstaking cross-browser testing for JavaScript, CSS and HTML and come back with compatibility tables and recommendations for everything from the basic box model (how browsers managed to fuck this up i don't know) to robust JavaScript that doesn't use crappy "if browser equals X" statements. Working with HTML/CSS and JS is highly painful if your project specifies that it must look _good_ in all browsers, so any tricks you can learn will save your life.

    --
    This comment does not represent the views or opinions of the user.
    1. Re:quirksmode.org by t_allardyce · · Score: 1

      maybe that needs a www.

      --
      This comment does not represent the views or opinions of the user.
    2. Re:quirksmode.org by Anonymous Coward · · Score: 0
    3. Re:quirksmode.org by zobier · · Score: 1

      I agree, PP Koch has definitely put in some hard work, quirksmode is a great resource.

      --
      Me lost me cookie at the disco.
  34. I, Barry Norton... by Anonymous Coward · · Score: 0

    ...am a FUCKIN SNOB!

  35. I much prefer by AEton · · Score: 1

    Building Accessible Websites by Joe Clark. By far the most insightful and interestnig book on the subject that I've seen. A great designer needs to keep all the "who" in mind - not just the "why" or "how".

    --
    We recently had heard in the office over one of the Yellow Machine that's made by Anthology Solutions.
  36. WRONG by Anonymous Coward · · Score: 0

    Zelldman writes EVERYTHING ever about web standards. I propose we disband the W3C and replace it with the ZC, baby!

    --
    Zeldmann fanboy and proud of it!

  37. Molly is Cool by airship · · Score: 2, Informative

    Molly is an amazing writer, and she really knows web design. When I got busy and couldn't update my book "Special Edition: Using HTML 4", Molly took it over and reworked it from the ground up into a much better book. And she's not only a great web designer and writer, she's a fantastic human being. Check out her site at http://www.molly.com/

    --
    Serving your airship needs since 1995.
  38. Simon P. Chappell??? by part_of_you · · Score: 0

    Holy let-down Batman! I accually thought that David Chappell commented.

  39. Besides the obligatory... by contemplation1 · · Score: 1

    .."I'm Rick James, bitch!" I would also like to include that reviews of 'beginners' type books on slashdot can really be helpful to those of us who haven't been able to geek out in particular areas of tech. I'll pick it up.

  40. how the universe works by handy_vandal · · Score: 1

    Clearly the universe works in mysterious ways.

    What's more, mysteriously the universe works in clear ways.

    -kgj

    --
    -kgj
  41. warning: goatse pic in linked document by Anonymous Coward · · Score: 0

    disgusting.

  42. To all of the people commenting on "serendipitous" by heatdeath · · Score: 1

    Word meaning does not have to be straight-forward and correct for it to make sense in a sentence. Most of humor is using language or meaning in a way that is not quite correct. (sarcasm, irony, etc.)

    For example, if I say "you have a good face for radio", the humor is that the real meaning of the sentence is not the same as the straightforward meaning.

    It was funny. Laugh.

    --
    I'm sorry. The number you have reached is imaginary. Please rotate your phone 90 degrees and try again.
  43. It's the real book cover, though by Anonymous Coward · · Score: 0

    Amazon.com confirms it. Who knew?

  44. Re:uh.... by symbolic · · Score: 1


    What if it's an unexpected package? From an estate attorney? That could easily be a serendipitous event.

  45. Re:uh.... by Colol · · Score: 1

    If an estate attorney is sending you an unexpected package and all that's in it is a book on CSS, I'd hardly call that serendipitous.

  46. Some things do last by fm6 · · Score: 1
    ... a dead tree-version of something that will soon be obsolete....
    You're assuming that HTML will continue to be totally re-invented at regular intervals, the way it has in the past. But that's something that has to change, and Molly Holzschlag happens to be one of the people trying to change it. I haven't seen this book (though I have to say that I've been disappointed by some of her previous books) but I think its safe to say that anything MH writes will be standards-driven, and thus unlikely to be obsolete soon.
  47. When I first read the title... by AphexXaero · · Score: 1

    ... I thought it was something to do with the Spring framework. It's not.

  48. Reference card? by g.a.g · · Score: 1

    Not too shabby. What I wonder, is there anywhere a good reference card for HTML in 1-4 pages? And throw one in for CSS while you're at it. To print out, and keep around for reference? Or is modern HTML too large for that? (Last time I really did HTML, I coded HTML 2.0 in Notepad.)

    --
    Hurricane Application Group, Dept of Meteorology Control, Ministry of Proactive Defense
  49. Why isn't anyone by GreaseMonkey · · Score: 1

    screaming at the top of their lungs over IE's non-conformance to the CSS standards. Though CSS is not perfect, the separation of structure and style is the right thing. It is nearly criminal the number of hacks required to get around IE's non-conformity.