What is the proper way to use blueprint if you want your content
within a 24 column layout but with some padding of 20 px on the left
and right of the page? Basically, I would rather not have a full
column padding on both sides.
Does nesting a column/span-x class within .box break the column
layout? It seems like it would by adding 1.5em padding instead of
explicit px counts. Breaking the layout one level deep within the
container would basically render the framework useless or creates a
mess when trying to line up subsequent nested divs.
I have tried using
<body>
<div class="box rm">
<div class="container showgrid" style="padding-top: 15px;">
<div class="column span-23 last">
header
</div>
<div id="content" class="span-23 last">
content
</div>
</div>
</div>
</body>
and
<body>
<div class="container showgrid" style="padding-top: 15px;">
<div class="box rm">
<div class="column span-23 last">
header
</div>
<div id="content" class="span-23 last">
content
</div>
</div>
</div>
</body>
Any ideas?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---