有人知道,如何在没有边缘的图像按钮中在visual studio中显示图像?
图像>
我的代码> CSS
.imageButtonCSS {
width: 15px; height: 15px;
margin-right: 5px;
padding: 0px;
background: url("../Images/delete.png");
}
C#
ImageButton imageButton = new ImageButton();
imageButton .ID = "1";
imageButton .CssClass = "imageButtonCSS ";
tableCell.Controls.Add(imageButton);
答案 0 :(得分:2)
以下使用 -
img, button{outline:0, border: none;}
另外要使用圆角,你可以使用 -
button.imageButtonCSS {border-radius:50%;}
答案 1 :(得分:0)
您可以添加或替换图像,然后检查边缘是否在图像文件中
答案 2 :(得分:0)