I have an HTML page that looks something like this:
<html>
<head>
<style type="text/css">
tbody, th, td {padding:0px;margin:0px;border:0px;}
tr.foo { border: 1px solid blue; }
</style>
</head>
<body>
<table>
<tbody>
<tr><td>Nothing
<tr class="foo"><td>Bordered
</tbody>
</table>
</body>
</html>
Note: the style to tbody, th and td MUST NOT be changed, since (in my real use case), these styles are applied to other pages.
What CSS pattern selector can I use to highlight (create border around) the row with class foo ?