1
僅當圖像未加載並且正在顯示默認值時,我纔想應用以下樣式。如何檢查與CSS如果圖像被加載或如果替代顯示?
#chat-log section .msg img.avatar{
background: purple;
color: white;
text-align: center;
padding-top: 10px;
}
但是,如果我應用它,當圖像被發現並加載它將扭曲圖像。 這裏是圖像
<img src="http://imageipsum.com/1200x675" alt="D" class="avatar">
我的問題實際上是與填充頂部,影響img顯示 –
如果我添加填充頂部到div.avatar它會將IMG向下移動。 –
可以添加「margin-top:10px;」到div幫助你,而不是「填充頂部」? – JJWillMC