现在的位置: 首页 > 综合 > 正文

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

2013年10月08日 ⁄ 综合 ⁄ 共 245字 ⁄ 字号 评论关闭
.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;
}

发现还是无效。

抱歉!评论已关闭.