gpt4 book ai didi

html - 图像不会在 Internet Explorer 中加载 "content: url()"

转载 作者:搜寻专家 更新时间:2023-10-31 08:45:01 24 4
gpt4 key购买 nike

我正在做一个网站,我的网站必须在 Chrome 和 Internet Explorer 9 中工作。我快完成了,只剩下一个问题了。如果我想加载带有“content: url()”的图像,它在 Chrome 中可以完美运行,但在 IE9 中不能。有人可以给我另一个无需更改 HTML 的解决方案吗?

我的 HTML:

<!DOCTYPE html>
<html lang="nl">
<head>
<title>Test</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="test.css" />
</head>
<body>
<header>
</header>

<a id="photo">Photo</a>

<footer>
</footer>
</body>
</html>

我的CSS:

#photo {
content: url('right-button.png');
}

最佳答案

试试这个:

#photo {
background: url("right-button.png") no-repeat;

}

有关更多信息,请阅读我为 content 属性找到的一些文章:

content property , W3c

关于html - 图像不会在 Internet Explorer 中加载 "content: url()",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23720728/

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