I have what seems like a simple problem, but searching the net hasn't yielded any results.

I have a table

<table>
    <tr>
        <td colspan="3">
            <img src="something.png" />
        </td>
    </tr>
    <tr>
        <td>
            Hello
        </td>
        <td>
            World
        </td>
        <td>
            !
        </td>
    </tr>
</table>

The <tr> elements all have border-top: dotted 1px black, this works fine apart from the central <td> element in the second <tr>.

This element has a double border and so appears as a solid line, removing the colspan fixes the issue.

I have tried applying border-collapse: collapse to the the table and this hasn't worked, I have tried adding content in the form of &nbsp; inside the first <td> instead of an image and this hasn't worked either.

Any ideas anyone?

Thanks, Jake

link|improve this question

is the table also has border? try with setting table border as none. – punit Oct 11 '11 at 11:23
The <table> has no border and the <td>s have no borders. – jakenoble Oct 11 '11 at 12:12
Which browser(s) are you seeing this in? I'm not getting it in a jsfiddle running Firefox 7.0.1: jsfiddle.net/yePHg – Pat Oct 11 '11 at 12:53
Chrome 14.0, just tried in Firefox 7.0.1 and it works fine for me. Both on Mac OS X. – jakenoble Oct 11 '11 at 14:22
2  
Can you please post the full CSS / HTML you are using for this rather than just the snippet? – Fred Cheese Oct 21 '11 at 18:28
show 1 more comment
feedback

5 Answers

up vote 8 down vote accepted
+100

Adding border-collapse: separate; to your table fixes the issue, see http://jsfiddle.net/quyMy/

I've added a dynamic test case to that fiddle. Click anywhere, and the visibility of the original/new table will toggle, allowing you to see the difference much easier.

Another way to get rid off the unexpected border is to add a plain <tr></tr> after the row containing <td colspan=3>.

link|improve this answer
No solid answer yet still Rob W. So, you win! – jakenoble May 11 at 15:32
feedback

If you set the border on the table cells instead of the table rows, it will work.

I could only reproduce the bug in IE, but there are other known issues with the way that tables in IE render borders.

See this: http://jsfiddle.net/yePHg/19/

link|improve this answer
Thanks Victor, I am sure i have tried this though. I will try again. – jakenoble Oct 13 '11 at 9:28
feedback

Try applying css display: block; on the tr:

    tr
    {
        border-top: 1px dotted #000;
        display: block;
    }

link|improve this answer
feedback

Try to add this css:

<style>
table, table * { border:0; padding:0; margin:0 }
table td { border-top:1px dotted #000 }
</style>
link|improve this answer
feedback

Add a row with a <hr /> between and then give the border to that hr

http://jsfiddle.net/Y5Gec/

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.