任何人都可以告诉我在应用CSS时出错了

时间:2012-01-07 07:06:32

标签: c# asp.net css

我为图片按钮应用了css,如下所示

<style type="text/css">
    .selected
    {
        padding-left:50px;
        background: transparent url('Images/samplecopy.jpg') ;
        background-repeat: repeat;
    }
</style>

<asp:ImageButton ID="btnYes" CssClass="selected" runat="server" ImageUrl="~/Images/image.jpg" />

但我没有按要求得到。我想用应用的背景图片覆盖整个image button

enter image description here

我需要将黑色背景准确地悬停在图像上,任何人都可以帮助我

1 个答案:

答案 0 :(得分:2)

不要使用填充,这就是造成问题的原因。

使用以下代码并查看是否有帮助

<style type="text/css">
.selected
{
    padding:0px;
    background: transparent url('Images/samplecopy.jpg') ;
    background-repeat: repeat;
}
</style>

<强>更新

clear: both;
padding: 5px;
border: 1px;
background: transparent url('Images/samplecopy.jpg') ;
background-repeat: repeat;
color: #FFF;
font-weight: bold;
font-size: 12px;
border-radius:3px;

在CSS中尝试这些属性并告诉我它是否有帮助。