How to center a span containing an image in a div

后端 未结 6 1740
傲寒
傲寒 2021-01-16 04:17

I have a main div (#homeGallery), in which i have a span(.imgClass) that is used to load one of a list of images. I need the image to be centered not only vertically but ho

6条回答
  •  情书的邮戳
    2021-01-16 04:45

    You can try the following:

    #homeGallery > .imgClass > img {
     margin:0px auto;
     display:block;
     max-width:60%;
     max-height:99%;
     border: 2px solid;
    }
    

提交回复
热议问题