<div class="row">
@foreach(var comicBook in Model)
{
<div class="col-md-3">
<h4>@Html.ActionLink(comicBook.DisplayText, "Detail", new { id = comicBook.Id })</h4>
<a href="@Url.Action("Detail", new { id = comicBook.Id})">
<img src="/Images/@comicBook.CoverImageFileName"
alt="@comicBook.DisplayText"
class="img-responsive" />
</a>
</div>
}
Do the following:
Then in CSS add the following or you can put it between
<style>
inside your html