How to align the image to the right to the right of the table cell using CSS?

How to set an image in the lower right corner of a table cell using CSS? I have no code, as it will only be an image and a table cell.

+3
source share
1 answer

Same:

td { text-align: right; vertical-align: bottom; } 

Demo

+5
source

All Articles