我使用Materialise框架,我對Cards組件(小版本)感興趣。僅當它不適合div時才顯示圖像的最大寬度
的代碼是這樣:(該small
類限制了卡的高度300px
)
<div class="card small">
<div class="card-image">
<img src="images/sample-1.jpg">
<span class="card-title">Card Title</span>
</div>
<div class="card-content">
<p>I am a very simple card. I am good at containing small bits of information.
I am convenient because I require little markup to use effectively.</p>
</div>
<div class="card-action">
<a href="#">This is a link</a>
</div>
</div>
這是我想達到的目標:
- 的圖像必須在中心其父
- 如果圖像的寬度小於卡的寬度,那麼它應該在卡中使用它的全寬
- 如果它比卡寬度,那麼它應該被裁剪以適合卡
- 應該響應大(使用
responsive-img
類)
是否可以將圖像添加爲「background-image」而不是使用「img'標籤? – Sanderfish
@Sanderfish不,它必須被用作'img' – VSG24