所以我有一個圖像。我需要在此圖片的頂部放置一個顏色覆蓋rgba(56, 59, 64, 0.7)
。如何在圖像上添加顏色疊加層
HTML:
<div class="home">
<img src="~/Images/plant.png" />
</div>
CSS:
.home img {
width: 100%;
padding: 0;
margin: 0;
}
.home img {
width: 100%;
padding: 0;
margin: 0;
}
<div class="home">
<img src="~/Images/plant.png" />
</div>
換個格在'.home'格,使其成爲相同的大小和與顏色(使用'Z-index'填充它,如果你必須) – marcellothearcane
檢查了這一點:https://stackoverflow.com/questions/18815157/how-to-overlay-image-with-color-in-css – anonymous