Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following:

<TABLE style="border-radius: 5px; border: 1px solid #999; xborder-collapse: collapse;">
<THEAD>
<TR style="background-color: red; "> <TH>Weekday</TH> <TH>Date</TH> <TH>Manager</TH> <TH>Qty</TH> </TR>
</THEAD>
<TBODY>
<TR> <TD>Mon</TD> <TD>09/11</TD> <TD>Kelsey</TD>  <TD>639</TD>  </TR>
<TR> <TD>Tue</TD> <TD>09/12</TD> <TD>Lindsey</TD> <TD>596</TD>  </TR>
<TR> <TD>Sun</TD> <TD>09/17</TD> <TD>Susan</TD>   <TD>272</TD>  </TR>
</TBODY>
</TABLE>

Example

I would like to have rounded borders, no space between cells also have the top header area of my table a different color. But it doesn't seem to work.

I created this fiddle. When I comment out border-collapse I get the rounded edges but spaces between cells. When it's in I get no border radius and no space between cells.

Update:

Here seems to be the perfect solution: Fiddle

share|improve this question
Have you looked at this: stackoverflow.com/questions/4932181/…. There's a fiddle on there as well, and it seems to do what you are asking for. – PhillipKregg Jan 17 '12 at 4:21
The closest I found to a solution is here: jsfiddle.net/JWb4T/1 – Samantha J Jan 17 '12 at 5:37

4 Answers

Adding border-spacing:0 instead of border-collapse:collapse on your table tag fixes it:

http://jsfiddle.net/AXdBy/2/

share|improve this answer
This almost fixes it but there is still some leak of color if you look carefully :-( – Samantha J Jan 17 '12 at 5:36
Ergh. Right you are. I think I've had luck applying the bf colour to the TH not TR, and giving them a border radius. A few tr:first-child th:first-child: border-radius:5px 0 0 0; style rules should help. Messy, but I think effective – SpoonNZ Jan 17 '12 at 8:04
Oh, what about giving a thead element the radius and background? Would do a fiddle but iPad is not good for coding... – SpoonNZ Jan 17 '12 at 8:06

Here's an example using a wrapper div :

<div style="display:table;padding:2px;border-radius:5px;border:1px solid #999;">
    <TABLE style="border-collapse: collapse;">
    <THEAD>
    <TR style="background-color: red; "> <TH>Weekday</TH> <TH>Date</TH> <TH>Manager</TH> <TH>Qty</TH> </TR>
    </THEAD>
    <TBODY>
    <TR> <TD>Mon</TD> <TD>09/11</TD> <TD>Kelsey</TD>  <TD>639</TD>  </TR>
    <TR> <TD>Tue</TD> <TD>09/12</TD> <TD>Lindsey</TD> <TD>596</TD>  </TR>
    <TR> <TD>Sun</TD> <TD>09/17</TD> <TD>Susan</TD>   <TD>272</TD>  </TR>
    </TBODY>
    </TABLE>
 </div>

You can see it working here: http://jsfiddle.net/zKajc/1/

Note: display:table; is not supported in IE7 and earlier. IE8 requires a !DOCTYPE in the document. All modern browsers (including IE9) support it though so it shouldn't be a problem.

share|improve this answer

Please find my answer on http://jsfiddle.net/avinapaster/mpN33/1/. but it won't work on IE

share|improve this answer
Your answer looks good but the "Normalized CSS" checkbox has to be clicked on fiddle. In my code and with "Normalized CSS" not checked then it doesn't seem to display so good. Any idea why? – Samantha J Jan 17 '12 at 5:39
add cellspacing="0" and cellpadding="0" on table tag. See the feedle jsfiddle.net/avinapaster/mpN33/2 – Avinash Jan 17 '12 at 6:16
While this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. – Bill the Lizard Jan 17 '12 at 18:46

I found the solution here:

Fiddle

thanks for everybody who helped

share|improve this answer
This has the same leakage as my solution for me on iPad. – SpoonNZ Jan 17 '12 at 8:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.