In my HTML document, I have a table with two columns and multiple rows. How can I increase the space in between the first and second column with css? I've tried applying "margin-right: 10px;" to each of the cells on the left hand side, but to no effect.
|
|
|
Apply this to your first
HTML example:
|
||||
|
|
|
A word of warning: though As someone noted, margin specifications are ignored for table cells: http://www.w3.org/TR/CSS2/tables.html
What's the "right" way then? If you are looking to replace the I am not a CSS expert, so I could well be wrong in the above (which would be great to know! I too would like a table cell margin CSS solution). Cheers! |
|||||
|
|
I realize this is quite belated, but for the record, you can also use CSS selectors to do this (eliminating the need for inline styles.) This CSS applies padding to the first column of every row:
And this would be your HTML, sans CSS!:
This allows for much more elegant markup, especially in cases where you need to do lots of specific formatting with CSS. |
|||
|
|
|
Try
|
||||
|
|
|
margin does not work unfortunately on individual cells, however you could add extra columns between the two cells you want to put a space between... another option is to use a border with the same colour as the background... |
|||
|
|
|
You can't single out individual columns in a cell in that manner. In my opinion, your best option is to add a |
|||
|
|
|
Following Cian's solution of setting a border in place of a margin, I discovered you can set border color to transparent to avoid having to color match the background. Works in FF17, IE9, Chrome v23. Seems like a decent solution provided you don't also need an actual border. |
|||
|
|
|
If you can't use padding (for example you have borders in td) try this
|
|||
|
|
|
If you have control of the width of the table, insert a padding-left on all table cells and insert a negative margin-left on the whole table.
Note, the width of the table needs to include the padding/margin width. Using the above as an example, the visual width of the table will be 700px. This is not the best solution if you're using borders on your table cells. |
|||
|
|
|
You can simply do that:
No CSS is required :) This 10px is your space. |
|||
|
|