This simple snippet of code doesn't outline the table row in red as I would like. Works in FF, not in Chrome or Safari. Known issue? Am I missing some magical incantation?
<html>
<head>
</head><body>
<table>
<tbody>
<tr style="outline: red solid 1px">
<td>This is some text</td>
<td>next column</td>
</tr>
</tbody>
</table>
</body></html>
Thanks!
Mark