How To Make Separating Lines/borders In A Table Disappear With Css?
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 tri
Solution 1:
table, tr, td, th {
border: 0;
}
Solution 2:
I think this is what you are looking for.
<table border="0" cellpadding="0" cellspacing="0">
Cheers.
Post a Comment for "How To Make Separating Lines/borders In A Table Disappear With Css?"