我想讓我的圖像成爲封面背景,但它對我不起作用。這裏是我的代碼:如何讓我的圖像覆蓋背景html?
<b>
<div id="feedicon" style="display:none; z-index:0;position:fixed;width:32px;height:32px;top:250px;left:0px;">
<a href="http://www.willmaster.com/index.xml" target="_blank">
<img src="http://www.willmaster.com/images/feed-icon32x32.png" border="0" width="32" height="32" alt="RSS" title="RSS">
</a>
</div>
</b>
第一步是將圖像作爲背景設置爲['background:url('...')'](https://developer.mozilla.org/en-US/docs/Web/ CSS/background),不使用'img'元素。此外,從名稱猜測,32x32圖標在今天的任何屏幕上都會看起來很糟糕。除非你想要一個重複的圖像,你要以哪種方式尋找與封面圖像不同的解決方案。 –