tags:

views:

157

answers:

2

I have a simple HTML table, and I wish to have the separating lines (/ borders?) disappear. The desired end result is a table that is invisible except for the actual text.

I've tried setting the "border" attribute to 0, didn't help. What is the correct CSS attribute that I should use?

+5  A: 
table, tr, td, th {
  border: 0;
}
Crozin
The problem was a duplicate table definition in the CSS.
ripper234
A: 

I think this is what you are looking for.

<table border="0" cellpadding="0" cellspacing="0">

Cheers.

TestSubject09
-1 He asked for a css attribute.
jeerose