gpt4 book ai didi

html - 背景图片在 IE 中不显示

转载 作者:行者123 更新时间:2023-11-27 22:44:16 24 4
gpt4 key购买 nike

所以我有这段代码(在 http://localhost/index.html 中):

<input type="button" value="Yea" class="button" />

使用 CSS 样式(在 http://localhost/min/css.css 中):

.button {
background-image: url(../images/button.gif);
}

但是,背景不会在任何版本的 Internet Explorer 中显示。我做错了什么?

最佳答案

IE 有 known issues使用 background-image 属性。看看当您改用 background 时会发生什么。

.button {
background: white url('../images/button.gif') no-repeat top;
}

或者你也可以试试

<input type="image" src="../images/button.gif" value="Yea" />

关于html - 背景图片在 IE 中不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8555688/

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