Hide table border in Firefox
css
on March 14, 2008
I have made abuse of tables on one recent project and the problem that toke me some time to figure it out was how to hide the top table border that still appeared in Firefox even that the table had border="0" attribute or border: 0; in CSS.
Anyway, to solve this problem i added this line in the css file:
table {
border-collapse: separate;
}This is a reminder to myself.. so i won't waste time next time searching for clues on how to handle table borders in Firefox.
table { border: 0px none; border-collapse: separate; }Post new comment