-2
如何使圖像適合div大小?我想這樣的事情https://www.quackit.com/html/templates/download/bootstrap/portfolio-2-column/index.html#HTML - 帶圖像的佈局
ATM是巨大的:https://i.gyazo.com/ae6d8873c56931cb9972b4c777799dc9.jpg
<div class="row">
<div class="col-md-6 portrait" >
<h2>Gaming</h2>
<a href="#">
<img src="~/Content/Images/Battlefield1.jpg" alt=""/>
</a>
<p>
Gaming is the act of playing games.
</p>
<p><a class="btn btn-default" href="@Url.Action("Gaming","Gaming")" > Take me to Gaming »</a></p>
</div>
<div class="col-md-4">
<h2>Get more libraries</h2>
<p>NuGet is a free Visual Studio extension that makes it easy to add, remove, and update libraries and tools in Visual Studio projects.</p>
<p><a class="btn btn-default" href="@Url.Action("Hot","Memes")" >Take me to Memes »</a></p>
</div>
<div class="col-md-4">
<h2>Web Hosting</h2>
<p>You can easily find a web hosting company that offers the right mix of features and price for your applications.</p>
<p><a class="btn btn-default" href="@Url.Action("Programming","Programming")" >Take me to Programming »</a></p>
</div>
.portrait是div。您需要在圖像上設置最大寬度。 –
https://gyazo.com/86daf347188db82fe68c0c85d168f388它搞砸了我的形象 – xDDD