today it's my first time i playing around with tables and i have noticing that the table and tr and td tags have a little space between them like 1 px or so

so here is my problem :

there is my code :

<table id="upload_box_container">
    <tr>
        <td class="border_bottom_1px">hi1</td>
        <td class="border_bottom_1px">hi2</td>
    </tr>
</table>

(upload_box_container - it's just background color and border color)

(border_bottom_1px - as it's name it only gives bottom border with 1px size)

and there is a picture of how it displays : http://postimage.org/image/16wz2ao78/

my question is

  • why there is a space between the two bottom borders

  • and why there is a space in the sides of the table (like padding) and the borders don't touch the table border

thanks.

link|improve this question

74% accept rate
feedback

3 Answers

up vote 3 down vote accepted

Define

table { border-spacing:0; }

and it should render in the way you want.

link|improve this answer
thank you , that what i was looking for. – Mor Sela Sep 24 '11 at 20:53
feedback

You need to reset the default styles applied by the browser.

Try at the top of your css file:

table, table tr, table td { padding:none;border:none;border-spacing:0;}

And check into some popular CSS resets out there:

http://meyerweb.com/eric/tools/css/reset/ http://developer.yahoo.com/yui/reset/

link|improve this answer
thank you , i was looking for the css reset. – Mor Sela Sep 24 '11 at 20:53
feedback

I prefer to use this approach:

table { table-layout:fixed; border-collapse:collapse; }
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.