Jump to content

How do you equally space columns/table cells?


richrock

Recommended Posts

Although I've been doing html/css for years, I can't quite figure out how to do equal spacing 'properly'....  I typically fudge it by making the right side wider than the required border - it'll make sense below.

 

What I mean is :  Say you have a table 600px wide, and you need to create 3 equal columns.  There is a border round this table of, say, 12px, for the width available is 600-(12x2) = 576px.

 

Divide this by three, and you get equal column widths of 192px.

 

But... in the interests of good design (rather unlike our Olympic logo/mascot  :wtf: ) : The second and third columns would need a padding on the left of 12px too..  Thus making :

 

Cell One 192px, no left padding |

Cell Two would have left padding 12px, | 

is now 180px wide (not 192)

Cell Three would have left padding 12px,

is now 180px wide (not 192)

 

As you can note, cells/columns 2 & 3 are now 180px, NOT 192px.  How would you work this out so that the three columns are equally spaced, and not padded on the left side, and the right side reaches the end of the 576px available?  It would be easy to add padding-right to the cells, but this makes it 12px short on the last cell, and IE6 doesn't support :last-child, only :first-child  >:(

 

Any ideas?  Bear in mind that this will have to work with end-users NOT fluent in HTML/CSS but would have basic guidance on adding styles..

Link to comment
Share on other sites

seems more of a error in the design phase? I mean if you have a fixed total widt like 576px it's not really possible to add 3 columns with 192px width and padding :D. Otherwise, make cells 204px width with 12 px 1 side padding they become 192px... or i don't get what your asking :D.

Link to comment
Share on other sites

text-align: right would not work - it's not the position of the text, but it seems you cannot make 3 columns in either a div or table fit a container and be equally spaced.  I'll knock up an image to let you know what I mean, it's a bit difficult with text.

 

I don't do the designs, they're done by a design team, and they use a 4px grid.  This means all numbers have to be divisible by 4.  I just used 576 as an example, as it's the optimum width for content in html emails.

 

It doesn't matter on the width, but the princinple is the same.  In print you can get columns correctly spaced, yet on the web you can't?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.