内联CSS问题

发布于 2024-10-19 03:53:09 字数 445 浏览 0 评论 0原文

我有以下脚本:

http://jsfiddle.net/oshirowanen/8mQ7x/1/

效果很好,但是一旦我更改为外部 css 以使用内联 css 方法添加背景图像,它就会停止工作,如下所示:

http://jsfiddle.net/oshirowanen/8mQ7x/

我需要其中的一部分是内联CSS,因为html是动态生成的。我正在尝试为每个图标使用不同的图像来创建许多通用图标,但使用通用的 css 外部文件来引起鼠标悬停效果。

为什么当使用内联 css 添加图像时它会停止工作?我怎样才能让它工作?

I have the following script:

http://jsfiddle.net/oshirowanen/8mQ7x/1/

Which works fine, but as soon as I change to external css to add the background image using inline css methods, it stops working, as demonstrated here:

http://jsfiddle.net/oshirowanen/8mQ7x/

I need part of it to be inline css because the html is dynamically generated. I am trying to create many generic icons using different images for each icon, but using a generic css external file to cause the mouse over effect.

Why does this stop working when inline css is used to add the image and how can I get this to work?

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

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

发布评论

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

评论(1

梦里梦着梦中梦 2024-10-26 03:53:09

因为元素 style CSS 规则比其他 CSS 规则具有更高的优先级。通过元素样式中的 background ,您不仅重写了默认背景,还重写了 :hover

您应该只重写background-image。示例: http://jsfiddle.net/8mQ7x/3/

Because elements style CSS rule has higher priority than other CSS rules. By background in element style you are rewriting not only default background, but :hover too.

You should rewrite only background-image. Example: http://jsfiddle.net/8mQ7x/3/

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