-2
我想製作簡單的圖像骨架。CSS設置圖像背景顏色,不顯示圖像
<img src=""></img> ...
現在,當我打開我的網頁,我看到加載圖片。所以,我怎麼能例如灰色的背景設定在該圖像上,然後:
$(window).on("load", function() {
// remove css which overwrited image with grey color.
});
像
img {
background-color: grey !important;
}
不工作。提前致謝。
的CSS屬性。用於類型爲「.img」的元素。試試'img {...}'。 – mikedidthis
'img'標籤是自我關閉的無效標籤,它們可以不包含嵌套元素/子節點(一個空標籤),因此不允許使用關閉/結束標籤 - 只需要擡頭** - HTML | MDN:** https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img – UncaughtTypeError
從'.img'更改爲'img'。無論如何 – DisplayName