Search code examples
htmlcsscss-tables

Styling table issue


So I want table to have borders only below each row.

td{

    border-bottom-style: solid;}

But, between columns, there is visible border break. I don't get how can I remove that?


Solution

  • table {
        border-collapse: collapse;
    }
    

    http://jsfiddle.net/Adrift/LSNR7/