I\'m trying to design some HTML/CSS that can put a border around specific rows in a table. Yes, I know I\'m not really supposed to use tables for layout but I don\'t know en
the trick is with outline property thanks to enigment's answer with little modification
use this class
.row-border{ outline: thin solid black; outline-offset: -1px; }
then in the HTML
.... ... ...
and the result is hope this helps you