Center image in table td in CSS

前端 未结 9 788
萌比男神i
萌比男神i 2021-01-30 19:35

I\'ve been trying to align an image to the center of the table td. It worked with setting margin-left to a specific value but it also increased the size of td too and that isn\'

9条回答
  •  孤街浪徒
    2021-01-30 19:47

    Set a fixed with of your image in your css and add an auto-margin/padding on the image to...

    div.image img {
        width: 100px;
        margin: auto;
    }
    

    Or set the text-align to center...

    td {
        text-align: center;
    }
    

提交回复
热议问题