WordPress将插件URL附加到样式属性URL()

发布于 2025-01-20 11:22:23 字数 420 浏览 0 评论 0原文

我正在用十几个块制作此Gutenberg块插件。 其中一个是给我这种奇怪的行为。

SCSS中的任何地方都有一个带有锚定目标的属性的地方,例如:

.mao1-d {
    mask: url(#mao1-c);
}

浏览器正在呈现:

.mao1-d {
    mask: url(/wp-content/plugins/cora-plugin-22/blocks/block15/build/#mao1-c);;
}

我在同一插件中的其他块中也有类似的代码,但行不通。 构建.CSS就像.scss一样,没有插件路径:

.mao1-d {
    mask: url(#mao1-c);
}

如何解决此问题的任何想法?

I'm making this gutenberg blocks plugin with a dozen of blocks.
One of them is giving me this weird behaviour.

Everywhere in the style.scss where there's a property with an anchor target, say, this one:

.mao1-d {
    mask: url(#mao1-c);
}

The browser is rendering as this:

.mao1-d {
    mask: url(/wp-content/plugins/cora-plugin-22/blocks/block15/build/#mao1-c);;
}

I have similar code within other blocks in the same plugin and that doesn't work.
The build .css is just like the .scss, without the plugin path:

.mao1-d {
    mask: url(#mao1-c);
}

Any ideas on how to solve this?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文