That's still CSS, just using inline styles instead of in the <style> tag. You can do this:
Code:
<td style="border-left:2px solid red;">stuff</td>
but I think it's easier using the <style> tag because if you want to change the style, you don't have to go back and change every single <td>, you just change the style rule.