Answers for "css how to center images in a table cell"

CSS
0

css how to center images in a table cell

td img{
    display: block;
    margin-left: auto;
    margin-right: auto;

}
Posted by: Guest on June-09-2020

Browse Popular Code Answers by Language