I'm currently working on creating a table layout and I want to include dividers similar to those seen on this website. Specifically, I am looking to have thin grey dividers between rows. I've attempted the following code, but it doesn't seem to be achieving the desired effect:
<table rules="rows">
<tbody>
<?php
foreach ($records as $record) {
if (isset($record['translate']))
{
echo '<tr>';
echo "<td width='500'>" . strip_tags($record['language_value']) . "</td>";
echo "<td width='200'>" . strip_tags($record['translate']) . "</td>";
echo '</tr>';
}
}
?>
</tbody>
</table>