vote up 3 vote down star
3

I want to style the last TD in a table without using a CSS class on the particular TD.

<table>
  <tbody>
    <tr>
      <td>One</td>
      <td>Two</td>
      <td>Three</td>
      <td>Four</td>
      <td>Five</td>
    </tr>
  </tbody>
</table>

table td 
{ 
  border: 1px solid black;
}

I want the TD containing the text "Five" to not have a border but again, i do not want to use a class.

Thanks.

flag
What is the reason you don't want to use class? – ya23 Dec 11 '08 at 16:19
I want to keep the html static and be able to change the style without adding code or a bunch of css classes and IDs. – vchoke Dec 11 '08 at 16:58

12 Answers

vote up 2 vote down check

You can use relative rules:

table td + td + td + td + td {
  border: none;
}

This only works if the number of columns isn't determined at runtime.

link|flag
heh - you love this approach! – nickf Dec 11 '08 at 16:03
It has its uses, especially if you, like this guy, don't want to have to change the HTML too much to support the CSS. – sblundy Dec 11 '08 at 16:05
That works! Thanks. Yes the HTML is static and I don't want to add a bunch of css classes or id to style the cells. – vchoke Dec 11 '08 at 16:07
haha ok ok - fair enough. Be aware of its lack of IE support though... – nickf Dec 11 '08 at 16:09
@vchoke: if you are happy with sblundy's solution, don't forget to accept it. – PhiLho Dec 11 '08 at 16:09
show 1 more comment
vote up 7 vote down

:last-child selector should do it, but it's not supported in any version of IE.

I'm afraid you have no choice but to use a class.

link|flag
You spoke too soon, apparently there was a hack to avoid using a class =) – Albert Dec 11 '08 at 22:33
vote up 3 vote down

Javascript is the only viable way to do this client side (that is, CSS won't help you). In jQuery:

$("table td:last").css("border", "none");
link|flag
One down side to this is that it breaks the content/style/behaviour model. – Christopher Done Aug 29 at 10:39
vote up 0 vote down

you could use the last-child psuedo class

table tr td:last-child {
    border: none;
}

This will style the last row only. It's not fully supported yet so it may be unsuitable

link|flag
vote up 1 vote down

Not a direct answer to your question, but using <tfoot> might help you achieve what you need, and of course you can style tfoot.

link|flag
no it won't. he's talking about the last CELL not the last ROW. – nickf Dec 12 '08 at 0:25
vote up 2 vote down

If you are already using javascript take a look at jQuery. It supports a browser independent "last-child" selector and you can do something like this.

$("tr:last-child").css({border:"none"})
link|flag
td:last-child, you mean? – nickf Dec 12 '08 at 0:26
no, last-child means the last child of the parent, so my selector says "give me the last child of the row" – joshperry Sep 18 at 20:13
Thanks, I used it to bold a Total line in table. Very easy. – Rick Oct 22 at 14:56
vote up 1 vote down

For IE, how about using a CSS expression:

<style type="text/css">
table td { 
  h: expression(this.style.border = (this == this.parentNode.lastChild ? 'none' : '1px solid #000' ) );
}
</style>
link|flag
vote up 0 vote down

You can use the col element as specified in HTML 4.0 (link). It works in every browser. You can give it an ID or a class or an inline style. only caveat is that it affects the whole column across all rows. Example:

<table>
    <col />
    <col width="50" />
    <col id="anId" />
    <col class="whatever" />
    <col style="border:1px solid #000;" />
    <tbody>
        <tr>
            <td>One</td>
            <td>Two</td>
            <td>Three</td>
            <td>Four</td>
            <td>Five</td>
        </tr>
    </tbody>
</table>
link|flag
My example is inverse of what you wanted to do but you get what I mean :) – Darko Z Dec 11 '08 at 21:42
vote up 0 vote down

how can we use an image insted of borders using this expressions in the css files

link|flag
vote up 0 vote down

This is the code that will add border for all the nodes and will remove the border for the last node(TD).

< style type="text/css" >

body {
font-family:arial;font-size: 8pt;
}
table td{ border-right:#666 1px solid}

table td {

    h: expression(this.style.border = (this == this.parentNode.lastChild ? 'none' : 'border-right:  0px solid' ) );   

}

< /style >
< table >
< tr >
< td > Home < /td >
< td > sunil< /td >
< td > Kumar< /td >
< td > Rayadurg < /td >
< td > Five < /td >
< td > Six < /td >
< /tr >
< /table >
< /body >
< /html >

Enjoy ...

I want the same insted of border i wanted it using images ... :-)

link|flag
this method only works in IE – fudgey Sep 26 at 6:54
vote up 1 vote down

In jQuery, provided the table is created either statically or dynamically prior to the following being executed:

$("table tr td:not(:last-child)").css({ "border-right":"1px solid #aaaaaa" });

Just adds a right border to every cell in a table row except the last cell.

link|flag
vote up 0 vote down

There is also a different approach.. and this would work for tables that aren't static... basically use <th> instead of <td> for that column:

<style type="text/css">
 table td { border: 1px solid black; }
 table th { border: 0px; }
<style>
<table>
  <tbody>
    <tr>
      <td>One</td>
      <td>Two</td>
      <td>Three</td>
      <td>Four</td>
      <th>Five</th>
    </tr>
    <tr>
      <td>One</td>
      <td>Two</td>
      <td>Three</td>
      <td>Four</td>
      <th>Five</th>
    </tr>
  </tbody>
</table>
link|flag

Your Answer

Get an OpenID
or

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