给button设置背景图片在IE中失效

来源:互联网 发布:淘宝dnf天空 编辑:程序博客网 时间:2024/06/04 05:16
.mysql {background-image: url(../images/pic/mysql.jpg);height: 250px;width: 425px;}

在chrome中显示正常,在IE中显示默认的背景颜色。排除路径问题

Google发现要将背景颜色改为透明

.mysql {background-image: url(../images/pic/mysql.jpg);background-color:Transparent;height: 250px;width: 425px;}
发现还是无效。