I am trying to figure out how to add border only inside the table. When I do:

table {
    border: 0;
}
table td, table th {
    border: 1px solid black;
}

The border is around the whole table and also between table cells. What I want to achieve is to have border only inside the table around table cells (without outer border around the table).

Here is markup I'm using for tables (even though I think that is not important):

<table>
    <tr>
        <th>Heading 1</th>
        <th>Heading 2</th>
    </tr>
    <tr>
        <td>Cell (1,1)</td>
        <td>Cell (1,2)</td>
    </tr>
    <tr>
        <td>Cell (2,1)</td>
        <td>Cell (2,2)</td>
    </tr>
    <tr>
        <td>Cell (3,1)</td>
        <td>Cell (3,2)</td>
    </tr>
</table>

And here are some basic styles I apply to most of my tables:

table {
    border-collapse: collapse;
    border-spacing: 0;
}
link|improve this question

I see only borders only around the cells. Since each of the cells have a border, it appears that the table has a border. Perhaps I don't get the question? – Chetan Sastry Aug 10 '09 at 22:01
Also called internal borders. – Mechanical snail Jan 11 at 5:40
feedback

6 Answers

up vote 27 down vote accepted

If you are doing what I believe you are trying to do, you'll need something a little more like this:

table {
  border-collapse: collapse;
}
table td, table th {
  border: 1px solid black;
}
table tr:first-child th {
  border-top: 0;
}
table tr:last-child td {
  border-bottom: 0;
}
table tr td:first-child,
table tr th:first-child {
  border-left: 0;
}
table tr td:last-child,
table tr th:last-child {
  border-right: 0;
}

jsFiddle Demo

The problem is that you are setting a 'full border' around all the cells, which make it appear as if you have a border around the entire table.

Cheers.

EDIT: A little more info on those pseudo-elements can be found on quirksmode, and, as to be expected, you are pretty much S.O.L. in terms of IE support.

link|improve this answer
Wouldn't the border-spacing: 0; do nothing due the the border-collapse: collapse? – Protector one Apr 4 '11 at 9:11
I think you're right, I'll update my answer. Thank you. – theIV Apr 6 '11 at 16:20
1  
It is my opinion that HTML & CSS answers should include a demo. Here you go: jsFiddle Demo​​​​​ – Web_Designer Feb 13 at 1:42
Good call, thanks for adding that. – theIV Feb 13 at 2:28
feedback

this works for me:

table {
    border-collapse: collapse;
    border-style: hidden;
}

table td, table th {
    border: 1px solid black;
}

view example ...

tested in FF 3.6 and Chromium 5.0, didn't try IE; from W3C:

Borders with the 'border-style' of 'hidden' take precedence over all other conflicting borders. Any border with this value suppresses all borders at this location.

link|improve this answer
Very ellegant solution. I've tested this and it works perfectly with HTML 4.1 STRICT (noquircks) in FF3.6, Opera11, IE8, Chrome10.0 – Jesse Mar 14 '11 at 16:05
As long as you don't need a table border, this is definitely the most elegant solution. – cjroth Dec 31 '11 at 0:35
It is my opinion that HTML & CSS answers should include a demo. Here you go: jsFiddle Demo – Web_Designer Feb 13 at 1:39
indeed ... although i'm of the opinion such additions be neutral; your user link is already in the comments. – anthonyrisinger Feb 14 at 10:02
feedback

this should work:

table {
 border:0;
}

table td, table th {
    border: 1px solid black;
    border-collapse: collapse;
}


edit:

i just tried it, no table border. but if i set a table border it is eliminated by the border-collapse.

this is the testfile:

<html>
<head>
<style type="text/css">
table {
    border-collapse: collapse;
    border-spacing: 0;
}


table {
    border: 0;
}
table td, table th {
    border: 1px solid black;
}


</style>
</head>
<body>
<table>
    <tr>
        <th>Heading 1</th>
        <th>Heading 2</th>
    </tr>
    <tr>
        <td>Cell (1,1)</td>
        <td>Cell (1,2)</td>
    </tr>
    <tr>
        <td>Cell (2,1)</td>
        <td>Cell (2,2)</td>
    </tr>
    <tr>
        <td>Cell (3,1)</td>
        <td>Cell (3,2)</td>
    </tr>
</table>

</body>
</html>
link|improve this answer
No that doesn't worked I've tried that. I will edit my first post. – Richard Knop Aug 10 '09 at 22:00
feedback

Due to mantain compatibility with ie7, ie8 I suggest using first-child and not last-child to doing this:

table tr td{border-top:1px solid #ffffff;border-left:1px solid #ffffff;}

table tr td:first-child{border-left:0;}

table tr:first-child td{border-top:0;}

You can learn about CSS 2.1 Pseudo-classes at: http://msdn.microsoft.com/en-us/library/cc351024(VS.85).aspx

link|improve this answer
This is a great solution. But be careful, if you have another table in one of your table cells and want to see the inner borders you need another set of CSS lines for your "inner" table – Michael Biermann Oct 25 '11 at 16:22
feedback

Example of another simple way for you to achieve the desired efect:

<table border="1" frame="void" rules="all">
    <tr>
        <td>1111</td>
        <td>2222</td>
        <td>3333</td>
    </tr>
    <tr>
        <td>4444</td>
        <td>5555</td>
        <td>6666</td>
    </tr>
</table>
link|improve this answer
feedback

its simple you just select the rules you want Table Borders: BORDER, FRAME and RULES

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.