我有一个主 div (#homeGallery),其中有一个 span(.imgClass),用于加载图像列表中的一个。我需要图像在 div 中不仅垂直居中而且水平居中。
到目前为止,我有这个代码。
#homeGallery > .imgClass{
margin:auto;
position: relative;
top: 0;
bottom: 0;
display: block;
left: 0;
right: 0;
}
和
#homeGallery > .imgClass > img {
margin:auto;
float:center;
max-width:60%;
max-height:99%;
border: 2px solid;
}
任何帮助,将不胜感激