Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to apply nth-of-child style to table cells, but that don't work. According to my code I would like to have each 2nd cell content be right-aligned and has a gray color. But that style don't have any effect.

Here is the code:

<!DOCTYPE html>
<html>
<head><title>test table centerring</title></head>
<body>
<style type="text/css">
    td:nth-of-child(2) {
        text-align: right;
        color: #ccc;
    }
</style>

<table border="1">
    <thead>
        <tr>
            <th>#</th>
            <th>Name</th>
            <th>Value</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>1</td>
            <td>Name 1</td>
            <td>Value 1</td>
        </tr>
        <tr>
            <td>2</td>
            <td>Name 2, Name 2, Name 2, Name 2</td>
            <td>Value 2</td>
        </tr>
        <tr>
            <td>3</td>
            <td>Name 3</td>
            <td>Value 3</td>
        </tr>
        <tr>
            <td>4</td>
            <td>Name 4</td>
            <td>Value 4, Value 4, Value 4, Value 4</td>
        </tr>
    </tbody>
</table>        
</body></html>

I've tried different kind of specification which object type to modify: "td", "tr td", "table tbody tr td" nothing affects my table.

I also tried to use ID to identify the table and apply style to id - that doesn't help as well.

P.S. I've tested in IE9, Chrome, FF

share|improve this question

2 Answers

up vote 3 down vote accepted

There is no such thing as the :nth-of-child selector. You appear to have mixed the two :nth-child and :nth-of-type selectors together...

share|improve this answer
Thanks a lot, that helped! My bad I didn't notice the difference – Budda Apr 26 '12 at 22:34
tr td:nth-child(2) {
    text-align: right;
    color: #ccc;
}​

DEMO.

share|improve this answer

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.