<table id="news" class="table" style="margin-top: -1px;">
<tbody style="font-size: 90%;">
тут столбцы
</tbody>
</table>
если в ней нет tr столбцов
$('table').show().not(':has(tbody tr)').hide();
for (const n of document.getElementsByTagName('table')) {
n.hidden = !n.querySelector('tbody tr');
}
.hidden {
display: none;
}
document.querySelectorAll('table').forEach(function(n) {
n.classList.toggle('hidden', this(n.tBodies));
}, tBodies => Array.prototype.every.call(tBodies, n => !n.rows.length));