On Fri, Feb 5, 2010 at 9:02 AM, cwebba <[email protected]> wrote: > Wait --- I want to know more. I understand *What* prepend append > classes are, I just don't get *Why* they are useful – can you describe > a strategy or hard reason to use them, rather than just use empty > spans?
The only reason you would use append / prepend instead of adding empty spans is so that you don't have to add empty spans. Take your pick: <!-- option 1 --> <div class="container"> <div class="span-17">...</div> <div class="span-1"></div> <div class="span-6">...</div> </div> <!-- option 2 --> <div class="container"> <div class="span-17 append-1">...</div> <div class="span-6">...</div> </div> -- -- Christian Montoya mappdev.com :: christianmontoya.net -- You received this message because you are subscribed to the Google Groups "Blueprint CSS" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/blueprintcss?hl=en.
