SVG 作为 CSS 背景

发布于 2024-10-26 00:25:55 字数 577 浏览 3 评论 0原文

我一直在尝试让一个简单的 SVG 矩形作为 IE9 或 FF4 中的背景,但两者都不适合我。这是我的代码:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
</head>
<body>
<div style="height:99px;background-image: url('bar.svg')"></div>
<iframe src="bar.svg" height="99px"></iframe>
</body>
</html>

iframe 显示图形,但 div 不显示。有什么想法我可能会出错吗?

我在此处找到了一个工作示例: 但我自己无法让它发挥作用:( 这让我发疯。

感谢您的任何帮助。

I've been trying to get a simple SVG rectangle to work as a background in IE9 or FF4 and neither is working for me. Here's my code:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
</head>
<body>
<div style="height:99px;background-image: url('bar.svg')"></div>
<iframe src="bar.svg" height="99px"></iframe>
</body>
</html>

The iframe shows the graphic but the div does not. Any ideas where I may be going wrong?

I found a working example here:
But I can't make it work myself :(
It's been driving me crazy.

Thanks for any help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

流殇 2024-11-02 00:25:55

感谢大家的帮助。这实际上是一个 Web 服务器问题,其中为 SVG 提供了错误的 MIME 类型并导致错误。这使得浏览器无法正确渲染。

这就是为我解决的问题。

第一次我从 VS 2010 的内置 Web 服务器切换到 IIS Express。然后在我的网络配置中添加:

<system.webServer>
    <staticContent>
      <mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
    </staticContent>
</system.webServer>

现在一切正常。

Thanks everyone for the help. It actually was a web server problem where the wrong MIME type for SVG was being served & that made the browsers fail to render correctly.

Here's what fixed it for me.

1st I switched from VS 2010's built-in web server to IIS Express. Then in my web config I added:

<system.webServer>
    <staticContent>
      <mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
    </staticContent>
</system.webServer>

Now everything works correctly.

懷念過去 2024-11-02 00:25:55

我在 Joomla 中遇到了同样的问题! 2.5 运行在Godaddy Linux 服务器上。

经过深入研究,我解决了这个问题:

转到 Joomla 安装的根目录并找到 .htaccess 文件(或者 htaccess.txt,如果还没有) setup)

现在将这些行添加到文件中:

AddType image/svg+xml svg
AddType image/svg+xml svgz

其余,使用标准 CSS 和 HTML 属性来渲染 SVG 文件。

I was having the same problem in Joomla! 2.5 running on Godaddy Linux server.

After intense research here is how I fixed the problem:

Go to the root directory of your Joomla install and locate the .htaccess file (or htaccess.txt if it is not already setup)

Now add these lines to the file:

AddType image/svg+xml svg
AddType image/svg+xml svgz

Rest, use the standard CSS and HTML properties to render your SVG file.

沫尐诺 2024-11-02 00:25:55

这个 jsfiddle 对你有用吗?

http://jsfiddle.net/B3mnk/embedded/result/

fwiw,我添加了背景尺寸使其美观大方。

Does this jsfiddle work for you?

http://jsfiddle.net/B3mnk/embedded/result/

fwiw, I've added a background size to make it nice 'n big.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文