HTML table can't remove borders
You should also set border:none;
and outline:none;
for the td element (not only for the table itself) and border-collapse: collapse;
Since you're having the class "nothing", try:
.nothing
{
border-collapse:collapse;
}
.nothing td
{
border:none;
outline:none;
}
Try border-collapse: collapse
https://developer.mozilla.org/en-US/docs/CSS/border-collapse
Just try this:
style="border-collapse: collapse;"
see: http://www.w3schools.com/cssref/pr_tab_border-collapse.asp