I'm echoing data out of my database into a <table>, however I'm trying to add a gradient line under each output, to show in-between each <tr> output row. But I can't get the CSS right on the <tr>.
I've managed to put together the design I want on a <hr> here: http://jsfiddle.net/ghrw3k8e/.
But I want it in-between my table rows (not columns).
My PHP output data:
echo " <tr>
<td align='center'>".$1." </td>
<td align='center'>".$2."</td>
<td align='center'>".$3."</td>
</tr> ";
outlineon each<tr>as you can not draw just the bottom or top part of thatoutline. Collapsing the borders should allow you to set borders on rows, but I think it's not possible to useborder-image(even if prefixed) to draw a gradient border on a<tr>. You can only change theborder-stylevalue to:none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset|initial|inherit.