Table border left and bottom

html, html-table

Solution

you can use these styles:

style="border-left: 1px solid #cdd0d4;"  
style="border-bottom: 1px solid #cdd0d4;"
style="border-top: 1px solid #cdd0d4;"
style="border-right: 1px solid #cdd0d4;"

with this you want u must use

<td style="border-left: 1px solid #cdd0d4;border-bottom: 1px solid #cdd0d4;">  

or

<img style="border-left: 1px solid #cdd0d4;border-bottom: 1px solid #cdd0d4;"> 

Problem

I need to create border as per the below example. HTML: ``` <table width="770"> <tr> <td>picture (border only to the left and bottom ) </td> <td>text</td> </tr> <tr> <td>text</td> <td>picture (border only to the left and bottom) </td> </tr> </table> ```

Original source