2013-04-13 49 views
0

我有一個表格,我想將一個.png圖像放在編輯列上,但圖像不可見,而是看到單詞編輯我想查看編輯的圖標圖像 this是我的代碼爲表格列添加圖標

echo '<td><b><font color="#663300"><a href="edit.php?id=' . $row['id'] . '">Edit</a><img src="images/glyphicons_016_bin.png" /></font></b></td>'; 

有沒有什麼辦法可以讓它可見?還是有辦法我可以做?這樣做的更好的方法,我將不勝感激非常感謝提前

+1

你想要圖像和「編輯」文本兩個? – Zlatko

+0

不只是圖像..... – trupatrue

回答

1

您可以使用CSS background-image財產

a.class_name { 
    background-image: url(../whatever.png); 
    height: 20px; 
    width: 20px; 
    display: inline-block; 
    background-position: /* If Required */; 
} 

你也可以簡單地嘗試這一點,只需確保圖像路徑是正確的

<a href="#"><img src="" /></a> 

注:<font>標籤已被棄用

+0

好吧,我有兩列我想要一個有刪除圖像,但是當我用你的方法圖像即使在第二個colomn – trupatrue

+0

@trupatrue你好:) –