我在我的元素中使用 ASP.NET。在那里我添加了一个带有背景图像的按钮。
但图像位于按钮左侧站点,如下图所示。我想让这个图像非常接近文本。(正如我标记的那样)。文本位于按钮的中心。有什么方法可以做到这一点?.,
代码-
<asp:Button ID="btnKotAdd" runat="server" Text="Kot Addtion"
onclick="btnKotAdd_Click"
style="margin-left: 10%; background-image: url('Images/add.png'); background-repeat:no-repeat; height:35px;"
width="80%" Font-Overline="False" />
提前致谢。
您必须根据您的要求调整按钮图像的background-position
。像这样:
style="margin-left: 10%;
background-image: url('Images/add.png');
background-repeat:no-repeat;
height:35px;
background-position:30% 0;"
我是一名优秀的程序员,十分优秀!