Andrei Ion
Andrei Ion

Reputation: 1827

Remove spaces/borders between the rows/columns

Attached is a screenshot of an HTML table that I made. I used some simple css to color the table cells into that withe color... the page background is the blue color that looks like some sort of border between them. How can I remove this border/space between the cells?

enter image description here

Upvotes: 0

Views: 773

Answers (1)

John Conde
John Conde

Reputation: 219924

Option 1

<table cellspacing="0">

Option 2

/* CSS */
table {
     border-collapse: collapse;
}

Upvotes: 2

Related Questions