Published
- 1 min read
css how to center images in a table cell
The solution for this is noted below
css how to center images in a table cell
Solution
td img {
display: block;
margin-left: auto;
margin-right: auto;
}
Try other methods by searching on the site. That is if this doesn’t work