How to display a border-bottom only if table cells are not empty (CSS)
- by Polarpro
Hey there,
I've got a Filemaker calculation that generates an HTML page with several tables.
If the calculation results in values for certain fields the result would be
<table>
<tr><td>Example value 1</td></tr>
<tr><td>Example value 2</td></tr>
...
</table>
If the calculation finds no values to be displayed, the result would simply be
<table>
</table>
In the first case, I want to the table to display a border at the bottom (or any other horizontal line);
in the second case, I don't want to display a border at the bottom.
I cannot find a way to get this done using a CSS...
Thanks in adavance :-)