Edit - Original Title: Is there an alternative way to achieve border-collapse:collapse in CSS (in order to have a collapsed, rounded corner table)?

Since it turns out that simply getting the table's borders to collapse does not solve the root problem, I have updated the title to better reflect the discussion.

I am trying to make a table with rounded corners using the CSS3 border-radius property. The table styles I'm using look something like this:

table {
  -moz-border-radius:10px;
  -webkit-border-radius:10px;
  border-radius:10px}

Here's the problem. I also want to set the border-collapse:collapse property, and when that is set border-radius no longer works (at least in Firefox)(edit- I thought this might just be a difference in mozilla's implementation, but it turns out this is the way it's supposed to work according to the w3c). Is there a CSS-based way I can get the same effect as border-collapse:collapse without actually using it?

Edits:

I've made a simple page to demonstrate the problem here (Firefox/Safari only).

It seems that a large part of the problem is that setting the table to have rounded corners does not affect the corners of the corner td elements. If the table was all one color, this wouldn't be a problem since I could just make the top and bottom td corners rounded for the first and last row respectively. However, I am using different background colors for the table to differentiate the headings and for striping, so the inner td elements would show their rounded corners as well.

Summary of proposed solutions:

Surrounding the table with another element with round corners doesn't work because the table's square corners "bleed through."

Specifying border width to 0 doesn't collapse the table.

Bottom td corners still square after setting cellspacing to zero.

Using javascript instead- works by avoiding the problem.

Possible solutions:

The tables are generated in php, so I could just apply a different class to each of the outer th/tds and style each corner separately. I'd rather not do this, since it's not very elegant and a bit of a pain to apply to multiple tables, so please keep suggestions coming.

Possible solution 2 is to use javascript (jQuery, specifically) to style the corners. This solution also works, but still not quite what I'm looking for (I know I'm picky). I have two reservations: 1) this is a very lightweight site, and I'd like to keep javascript to the barest minimum 2) part of the appeal that using border-radius has for me is graceful degradation and progressive enhancement. By using border-radius for all rounded corners, I hope to have a consistently rounded site in CSS3-capable browsers and a consistently square site in others (I'm looking at you, IE).

I know that trying to do this with CSS3 today may seem needless, but I have my reasons. I would also like to point out that this problem is a result of the w3c speficication, not poor CSS3 support, so any solution will still be relevant and useful when CSS3 has more widespread support.

link|improve this question
I wish there was a solution for this.... I'm looking at it myself... – Webnet Jul 21 '10 at 19:13
feedback

13 Answers

up vote 62 down vote accepted

I figured it out. You just have to use some special selectors.

Here's a working example. (edit- only works in Safari and Firefox for now)

The problem with rounding the corners of the table was that the td elements didn't also become rounded. You can solve that by doing something like this:

table tr:last-child td:first-child {
-moz-border-radius-bottomleft:10px;
-webkit-border-bottom-left-radius:10px;
border-bottom-left-radius:10px}

table tr:last-child td:last-child {
-moz-border-radius-bottomright:10px;
-webkit-border-bottom-right-radius:10px;
border-bottom-right-radius:10px}

Now everything rounds properly, except that there's still the issue of border-collapse:collapse breaking everything. A workaround is to set cellspacing=0 in the html instead (thanks, Joel).

link|improve this answer
12  
Instead of mucking around with the HTML, why not add border-spacing: 0; as a border style? – Ramon Tayag Mar 8 '11 at 3:43
I was having an issue setting the background color of the TR tag instead of the TD tag. Be sure if you're striping your table that you're setting the background color of the TD not the TR. – Will Shaver Aug 22 '11 at 21:08
Well what happens if you have to use background-color on the TR? Is it possible at all? – Mohoch Oct 9 '11 at 15:21
tr.even>td { background-color:rgb(200,200,200); } ? – Chaosphere2112 Apr 24 at 3:36
Ramon is correct. Then simply edit border-radius for :first-child and :last-child where needed. – worked May 16 at 23:10
feedback

Have you tried using table{border-spacing: 0} instead of table{border-collapse: collapse} ???

link|improve this answer
Thank you, this let me do what I needed to do (which involved a series of TH elements at the top outside of the 'rounded corner' box containing all the TDs below) – RonLugge Feb 22 at 20:07
awesome .. it worked ;) – Techish May 4 at 10:12
feedback

You'll probably have to put another element around the table and style that with a rounded border.

The working draft specifies that border-radius does not apply to table elements when ‘border-collapse’ is ‘collapse’.

link|improve this answer
That was something I considered as well, but if I create a div to surround the table and set it to have rounded corners, the square table corners still bleed through. See the newly-posted example. – vamin Mar 9 '09 at 23:21
The best compromise I could find was adding a THEAD block to the table and applying the grey background to it (with #eee on the table itself). The header cells overflowed behind the TABLE's border instead in front of it. Then I increased the table border to 3px to hide the overflow. – user59200 Mar 10 '09 at 1:25
feedback

HTML:

<table class="listing">
        <tr>
            <th>item1</th>
            <th>item2</th>
            <th>item1</th>
            <th>item2</th>
        </tr>
        <tr>
            <td>item1</td>
            <td>item2</td>
            <td>item1</td>
            <td>item2</td>
        </tr>
        <tr>
            <td>item1</td>
            <td>item2</td>
            <td>item1</td>
            <td>item2</td>
        </tr>
        <tr>
            <td>item1</td>
            <td>item2</td>
            <td>item1</td>
            <td>item2</td>
        </tr>
    </table>

CSS:

table.listing {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: separate;
  /*    border: 1px solid #BEBCBB;
    .border-radius(4px);*/

}
table.listing tr th {
  color: black;
  font-weight: normal;
  text-align: left;
  padding: 5px;
  background: #FFFEFC;
  /* old browsers */

  background: -moz-linear-gradient(top, #fffefc 0%, #f6f4f2 10%, #e9e7e5 90%, #dfdddb 100%);
  /* firefox */

  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fffefc), color-stop(0.1, #f6f4f2), color-stop(0.9, #e9e7e5), to(#dfdddb));
  border-top: 1px solid #bebcbb;
  border-bottom: 1px solid #bebcbb;
}
table.listing tr th:first-child {
  border-top-left-radius: 4px;
  border-left: 1px solid #bebcbb;
}
table.listing tr th:last-child {
  border-top-right-radius: 4px;
  border-right: 1px solid #bebcbb;
}
table.listing tr td {
  background: #FAF9F8;
  padding: 5px;
  border-bottom: 1px solid #bebcbb;
  border-right: 1px solid #bebcbb;
}
table.listing tr td:first-child {
  border-left: 1px solid #bebcbb;
}
table.listing tr:first-child th {
  border-bottom: 1px solid #bebcbb;
}
table.listing tr:last-child th, table.listing tr:last-child td {
  background: #FFFEFC;
  /* old browsers */

  background: -moz-linear-gradient(top, #dfdddb 0%, #e9e7e5 10%, #f6f4f2 90%, #fffefc 100%);
  /* firefox */

  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#dfdddb), color-stop(0.1, #e9e7e5), color-stop(0.9, #f6f4f2), to(#fffefc));
  border-top: none;
}
table.listing tr:last-child th:first-child, table.listing tr:last-child td:first-child {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 4px;
}
table.listing tr:last-child th:last-child, table.listing tr:last-child td:last-child {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 0px;
}
table.listing tr:nth-child(odd) td {
  background: #eee;
  /* old browsers */

}

Demo: http://jsfiddle.net/vxsx/Wv6MY/

Maybe there is a better solution somewhere, but I use this.

link|improve this answer
Please write answers which include (permanent) code. If there is a lot of code to the answer, just post the relevant bits and an explanation of why they are relevant. – Styne666 Jan 20 at 16:12
feedback

I tried a workaround using the pseudo elements :before and :after on the thead th:first-child and thead th:last-child

In combination with wrapping the table with a <div class="radius borderCCC">

table thead th:first-child:before{ 
    content:" ";
    position:absolute;
    top:-1px;
    left:-1px;
    width:15px;
    height:15px;
    border-left:1px solid #ccc;
    border-top:1px solid #ccc; 
    -webkit-border-radius:5px 0px 0px;
}
table thead th:last-child:after{ 
    content:" "; 
    position:absolute; 
    top:-1px;
    right:-1px; 
    width:15px;
    height:15px;
    border-right:1px solid #ccc;
    border-top:1px solid #ccc;
    -webkit-border-radius:0px 5px 0px 0px;
}

see jsFiddle

Works for me in chrome (13.0.782.215) Let me know if this works for you in other browsers.

link|improve this answer
feedback

To the best of my knowledge, the only way you could do it would be to modify all the cells like so:

table td 
{
    border-right-width:0px;
    border-bottom-width:0px;
}

And then to get the border on the bottom and right back

table tr td:last-child
{
    border-right-width:1px;
}
table tr:last-child td
{
    border-bottom-width:1px;
}

:last-child is not valid in ie6, but if you are using border-radius I assume you don't care.

EDIT:

After looking at your example page, it appears that you may be able to work around this with cell spacing and padding.

The thick gray borders you are seeing are actually the background of the table (you can see this clearly if you change the border color to red). If you set the cellspacing to zero (or equivalently: "td, th { margin:0; }") the grey "borders" will disappear.

EDIT 2:

I can't find a way to do this with only one table. If you change your header row to a nested table, you might possibly be able to get the effect you want, but it'll be more work, and not dynamic.

link|improve this answer
Thank you Ithi, but it's not working for me. – vamin Mar 9 '09 at 23:12
I've added an example with cellspacing=0, and it's much closer. The undesireable borders disappear, but the bottom corners still bleed out. – vamin Mar 9 '09 at 23:38
Thanks again for your help. The tables are generated in php, so I'm thinking if there isn't an elegent solution proposed I'll just assign a class to each corner th/td and style them separately. – vamin Mar 10 '09 at 0:07
feedback

for chrome following method works:

table{
  border-collapse: collapse;
 -webkit-box-shadow:0 0 1px #666; /* this item draw table border  */ 
 -webkit-border-radius:30px;
  border-style: hidden; /* hide standart table (collapsed) border */
}

td {
   border:1px solid #ccc;
}
link|improve this answer
This is the only thing that has worked for me. It is difficult to get the right color on the table border though. – Thomas Ahle Mar 18 '11 at 23:40
feedback

i had the same problem. remove border-collapse entirely and use: cellspacing="0" cellpadding="0" in the html document. example:

link|improve this answer
This works, but it requires you to afterwards use firstchild/lastchild tricks to get the effect. – Thomas Ahle Mar 18 '11 at 23:49
feedback

The given answers only work when there are no borders around the table, which is very limiting!

I have a macro in SASS to do this, which fully supports external and internal borders, achieving the same styling as border-collapse: collapse without actually specifying it.

Tested in FF/IE8/Safari/Chrome.

Gives nice rounded borders in pure CSS in all browsers but IE8 (degrades gracefully) since IE8 doesn't support border-radius :(

Feel free to remove any vendor-tags you don't need.

This answer is not the shortest - but it works.

.roundedTable {
  -webkit-border-radius: 20px 20px;
  -moz-border-radius: 20px / 20px;
  -o-border-radius: 20px / 20px;
  -ms-border-radius: 20px / 20px;
  -khtml-border-radius: 20px / 20px;
  border-radius: 20px / 20px;
  border: 1px solid #333333;
  border-spacing: 0px;
}
.roundedTable th {
  padding: 4px;
  background: #ffcc11;
  border-left: 1px solid #333333;
}
.roundedTable th:first-child {
  border-left: none;
  -moz-border-radius-topleft: 20px;
  -webkit-border-top-left-radius: 20px;
  -o-border-top-left-radius: 20px;
  -ms-border-top-left-radius: 20px;
  -khtml-border-top-left-radius: 20px;
  border-top-left-radius: 20px;
}
.roundedTable th:last-child {
  -moz-border-radius-topright: 20px;
  -webkit-border-top-right-radius: 20px;
  -o-border-top-right-radius: 20px;
  -ms-border-top-right-radius: 20px;
  -khtml-border-top-right-radius: 20px;
  border-top-right-radius: 20px;
}
.roundedTable tr td {
  border: 1px solid #333333;
  border-right: none;
  border-bottom: none;
  padding: 4px;
}
.roundedTable tr td:first-child {
  border-left: none;
}

To apply this style simply change your

<table>

tag to the following:

<table class="roundedTable">

and be sure to include the above CSS styles in your HTML.

Hope this helps.

link|improve this answer
feedback

Border-radius is now officially supported. So, in all of the above examples you may drop the "-moz-" prefix.

Another trick is to use the same color for the top and bottom rows as is your border. With all 3 colors the same, it blends in and looks like a perfectly rounded table even though it isn't physically.

link|improve this answer
feedback

jquery.corner plugin provides a nice alternative:

http://www.malsup.com/jquery/corner/ has a nice demo of it's capabilities. You can specify which corners to alter and what style of alteration you want to perform by defining the radius, etc.

link|improve this answer
Thanks for the tip. That would work, but I am still looking for a CSS solution. – vamin Mar 10 '09 at 0:49
feedback

Here is a recent example of how to implement a table with rounded-corners from http://medialoot.com/preview/css-ui-kit/demo.html. It's based on the special selectors suggested by Joel Potter above. As you can see, it also includes some magic to make IE a little happy. It includes some extra styles to alternate the color of the rows:

    table-wrapper {
    width: 460px;
    background: #E0E0E0;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E9E9E9', endColorstr='#D7D7D7');
    background: -webkit-gradient(linear, left top, left bottom, from(#E9E9E9), to(#D7D7D7)); 
    background: -moz-linear-gradient(top,  #E9E9E9,  #D7D7D7); 
    padding: 8px;
    -webkit-box-shadow: inset 0px 2px 2px #B2B3B5, 0px 1px 0 #fff;
    -moz-box-shadow: inset 0px 2px 2px #B2B3B5, 0px 1px 0 #fff;
    -o-box-shadow: inset 0px 2px 2px #B2B3B5, 0px 1px 0 #fff;
    -khtml-box-shadow: inset 0px 2px 2px #B2B3B5, 0px 1px 0 #fff;
    box-shadow: inset 0px 2px 2px #B2B3B5, 0px 1px 0 #fff;
    -webkit-border-radius: 10px; 
    /*-moz-border-radius: 10px; firefox doesn't allow rounding of tables yet*/
    -o-border-radius: 10px; 
    -khtml-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.table-wrapper table {
    width: 460px;
}

.table-header {
    height: 35px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    text-align: center;
    line-height: 34px;
    text-decoration: none;
    font-weight: bold;

}

.table-row td {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    font-weight: normal;
    color: #858585;
    padding: 10px;
    border-left: 1px solid #ccc;
    -khtml-box-shadow: 0px 1px 0px #B2B3B5;
    -webkit-box-shadow: 0px 1px 0px #B2B3B5;
    -moz-box-shadow: 0px 1px 0px #ddd;
    -o-box-shadow: 0px 1px 0px #B2B3B5;
    box-shadow: 0px 1px 0px #B2B3B5;
}

tr th {
    border-left: 1px solid #ccc;
}

tr th:first-child {
    -khtml-border-top-left-radius: 8px;
    -webkit-border-top-left-radius: 8px;
    -o-border-top-left-radius: 8px;
    /*-moz-border-radius-topleft: 8px; firefox doesn't allow rounding of tables yet*/
    border-top-left-radius: 8px;
    border: none;
}

tr td:first-child {
    border: none;
}

tr th:last-child {
    -khtml-border-top-right-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -o-border-top-right-radius: 8px;
    /*-moz-border-radius-topright: 8px; firefox doesn't allow rounding of tables yet*/
    border-top-right-radius: 8px;
}

tr {
    background: #fff;
}

tr:nth-child(odd) {
    background: #F3F3F3;
}

tr:nth-child(even) {
    background: #fff;
}

tr:last-child td:first-child {
    -khtml-border-bottom-left-radius: 8px;
    -webkit-border-bottom-left-radius: 8px;
    -o-border-bottom-left-radius: 8px;
    /*-moz-border-radius-bottomleft: 8px; firefox doesn't allow rounding of tables yet*/
    border-bottom-left-radius: 8px;
}

tr:last-child td:last-child {
    -khtml-border-bottom-right-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
    -o-border-bottom-right-radius: 8px;
    /*-moz-border-radius-bottomright: 8px; firefox doesn't allow rounding of tables yet*/
    border-bottom-right-radius: 8px;
}
link|improve this answer
feedback

As detailed by a few above, by far the simplest way is to apply border-spacing: 0; to the table CSS. Don't need any of the workarounds.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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