我想將動態生成的圖像(所有不同大小和方向)集中在一個容器中,但它會填充容器的大小。填充容器的居中映像
我的代碼是:
HTML
<ul class="mobile-list">
<!-- Thumbnails -->
<li>
<div class="gal-desc">Egy halott énekei</div>
<a href="http://www.baksagaspar.com/wp-content/gallery/print/ehe-borito-sm_0.jpg" alt="Egy halott énekei" title="<strong>Egy halott énekei</strong> by Mind-járt" rel="shadowbox [set_2]">
<img src="http://www.baksagaspar.com/wp-content/gallery/print/thumbs/thumbs_ehe-borito-sm_0.jpg" alt="Egy halott énekei">
</a>
</li>
<li>
<div class="gal-desc">Technoids</div>
<a href="http://www.baksagaspar.com/wp-content/gallery/print/technoids-cover-sm_0.jpg" alt="Technoids" title="<strong>Technoids</strong> by Mind-járt & Friends" rel="shadowbox [set_2]">
<img src="http://www.baksagaspar.com/wp-content/gallery/print/thumbs/thumbs_technoids-cover-sm_0.jpg" alt="Technoids">
</a>
</li>
</ul>
CSS
.mobile-list li a {
display: inline-block;
width: 145px;
height: 145px;
overflow: hidden;
}
.mobile-list li a img {
min-width: 100%;
min-height: 100%;
}
因爲這是爲移動瀏覽器,它可以解決CSS3,甚至jQuery的。
圖像與您設置的尺寸完全相同 - width:145px; height:145px; – dezman
是的,但它延伸到任何一個維度是更大的,如果我將它設置爲固定大小 – Gas