我有用於添加和刪除的gridview按鈕我用CSS來顯示每個圖標。它工作在Firefox罰款,但iccons沒有在IE中顯示或Chrome這裏是我的CSS代碼圖標.ico擴展不會顯示在IE或Chrome
.delete {
display: inline;
background: url('delete.ico') no-repeat;
border: none !important;
background-position: -0px -0px;
width: 20px;
height: 20px;
float: none;
}
.edit {
display: inline;
background: url('edit.ico') no-repeat;
border: none !important;
background-position: -0px -0px;
width: 20px;
height: 20px;
float: none;
}
[編輯] 這裏是HTML按鈕
<asp:TemplateField>
<ItemTemplate>
<asp:Button ID="BtnDelete" runat="server" CssClass="delete" CommandName="Removal" OnCommand="BtnDelete_Command" CommandArgument='<%# DataBinder.Eval(Container,"RowIndex")+";"+Eval("code")+";"+Eval("name") %>' OnClientClick="return not_check1();" />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField>
<ItemTemplate>
<asp:Button ID="BtnEdit" runat="server" CommandName="Edit" Text="" CssClass="edit" OnCommand="BtnEdit_Command" CommandArgument='<%# DataBinder.Eval(Container,"RowIndex")+";"+Eval("code") %>' />
</ItemTemplate>
</asp:TemplateField>
只是一個符號。你不需要放-0px -0px,你可以用0 0來代替。 – ErwinGO
你能顯示一些html嗎? –