我的目标是使我的 div 中更大的图像居中。我不想调整图像大小。必须显示图像的中心。
我的 div 定义如下:
div.thumbnail
{
display: block;
margin: auto;
height: 100px;
width: 100px;
overflow: hidden;
}
然后我的想法是为图像另外创建这个:
div.thumbnail img
{
overflow: hidden;
margin: auto;
}
HTML 看起来像:
<div class="thumbnail">
<a href="{{ url_for('showphotos') }}?key={{ album['AlbumName'] }}">
<img src="{{ url_for ('static', filename=album['ThumbPath']) }}">
</a>
</div>
但这对我不起作用。任何建议如何解决这个问题?
谢谢达雷尔。