gpt4 book ai didi

Internet Explorer 7 和 8 上的 xhtml 代码的 css 问题

转载 作者:行者123 更新时间:2023-11-28 10:24:26 25 4
gpt4 key购买 nike

我在 IE7IE8 中的 css 有问题

我在我的输入框里使用了下面的代码,但是没有显示背景图片在 Internet Explorer 7 和 8 上。图像在所有其他浏览器上显示。

.search input[type="submit"] {
background: url(../images/search_button.png) no-repeat scroll 0 0 rgba(0, 0, 0, 0);
border: 0 none;
float: right;
height: 31px;
margin-left: 10px;
margin-top: 6px;
width: 40px;
}

最佳答案

属性的一个未知/错误值会使整个属性无效

IE 7 和 8 不识别 rgba 所以整个 background 没有应用。

要解决该问题,您可以将 rgba 拆分为 background-color:

.search input[type="submit"] {
background: url(../images/search_button.png) no-repeat scroll 0 0;
background-color: rgba(0, 0, 0, 0);
border: 0 none;
float: right;
height: 31px;
margin-left: 10px;
margin-top: 6px;
width: 40px;
}

关于Internet Explorer 7 和 8 上的 xhtml 代码的 css 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23799511/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com