使用position:relative/absolute
,
以下是两个示例,
对齐全卡
仅与图像对齐
.templateCard {
border: 1px dashed red;
/* demo */
width: 136px;
display: inline-block;
vertical-align: top;
margin-left: 3px;
margin-right: 3px;
margin-top: 10px;
position: relative;
}
#spinner {
margin: auto;
width: 20px;
height: 20px;
border: solid black;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0
}
#card02.templateCard {
height: 260px
}