0
我想顯示一種圖庫類型,每行最多兩個圖像,每個圖像下方都有一個圖像描述,我需要它是響應式的,我不是專家的引導程序,這個是我的代碼:創建圖庫引導
<div class="container">
<div class="row">
<div class="col-md-6"> <a href="/Apps/Online" > <img src="~/images/aviation.jpg" style="max-height:300px;max-width:300px;" class="img-responsive" /> Aviation</a></div>
<div class="col-md-6"> <a href="/Apps/Printable" > <img src="~/images/International_photo.jpg" style="max-height:300px;max-width:300px;" class="img-responsive" /> International</a></div>
<div class="col-md-6"> <a href="/Apps/Online"> <img src="~/images/ship.jpg" style="max-height:300px;max-width:300px;" class="img-responsive" /> Marine</a> </div>
<div class="col-md-6"> <a href="/Apps/Printable" > <img src="~/images/longshore.jpg" style="max-height:300px;max-width:300px;" class="img-responsive" /> WC/Longshore</a> </div>
</div>
有了上面的代碼我得到不同大小的圖像,他們沒有組織 我想一些響應dessign這樣的:
image image
name_of_image name_of_image
image image
name_of_image name_of_image
在OP已經要求的方式,似乎他有不同的尺寸不同的圖像。在這種情況下,你的答案對他來說並不是什麼好事,因爲在你的答案中,你的圖片都具有相同的尺寸。 – EhsanT