由於某些原因,當我在網站上的某些圖片上添加了alt標記時,它更改了尺寸。img alt更改圖片尺寸
www.dweeman.com/eb/sitetemplate.html有alt標籤
<table id="sidebar">
<tr id="sidebar">
<td><img src="images/photos/venetian_sample.gif" alt="venetian blind icon"></td>
<td id="sidebar"><a href="blinds.html#venetian">Venetian Blinds</a></td>
</tr>
</table>
www.dweeman.com/eb/index.html不具有alt標籤
<table id="sidebar">
<tr id="sidebar">
<td><img src="images/photos/venetian_sample.gif"></td>
<td id="sidebar"><a href="blinds.html#venetian">Venetian Blinds</a></td>
</tr>
</table>
它們都使用相同的樣式表都
,否則在該分區完全相同的HTML。
人知道爲什麼會是什麼?我知道圖像沒有加載。他們還沒有制定。但是我想在未來不加載的情況下解決這個問題,所以不會導致我的身體消失。
所有的圖像都是404'? – Shannon
如果你的意思是現在的圖像大小,它可能與alt文本的長度有關。您可以使用CSS設置大小,以確保它們都是統一的。 – Shannon
是的,我還沒有創建圖像,但他們將是50 * 50px。 – dweeman