メインの div (#homeGallery) があり、そこには画像のリストの 1 つを読み込むために使用される 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;
}
どんな助けでもいただければ幸いです