dhl:给Button设背景图片

button 背景图片IE下不认,无法显示。要想背景图片起效果,必须将按钮的背景颜色为透明才起作用。默认的都不行的。

所以:background-color: Transparent;

2.把边框设为0

 

input[type="button"]
{
 margin:0px;
 padding:0px;
   width:100px;
   height:27px;
   text-align:center;
   background-color: Transparent;
    background-image:url(../Images/buttonbj.gif);
 background-repeat:no-repeat;
 background-position:left;
 border:0px;
 color:#FFF;
 }

posted @ 2010-04-05 21:13  肚肚  阅读(190)  评论(0编辑  收藏  举报