sIFR 是否支持像 :first-child 这样的伪元素?

发布于 2024-08-06 19:58:29 字数 275 浏览 3 评论 0原文

我的 sifr-config.js 文件中有以下内容:

sIFR.replace(avenir_book, {
  selector: 'p:first-child',
  css: '.sIFR-root { color: #782221; font-size:22px; }',
  wmode: 'transparent'
});

但它不起作用。我通过在我的普通样式表中测试它来验证相同的 CSS 是否有效。 sIFR不理解这个伪元素,还是需要以特殊的方式调用?

I have the following in my sifr-config.js file:

sIFR.replace(avenir_book, {
  selector: 'p:first-child',
  css: '.sIFR-root { color: #782221; font-size:22px; }',
  wmode: 'transparent'
});

But it doesn't work. I've verified that the same CSS works by testing it in my normal stylesheet. Does sIFR not understand this pseudo element, or does it need to be called in a special way?

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

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

发布评论

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

评论(1

握住你手 2024-08-13 19:58:29

假设您使用 sIFR 3,则不支持 :first-child,如此页面所示。不过,sIFR 可以兼容 jQuery,请阅读更多信息

替换 parseSelector 的步骤
jQuery:

1 - 确保包含 jQuery
JavaScript 文件。

2 - 删除所有的 parseSelector
sifr.js底部的代码

3 - 添加以下行:

var parseSelector = $;

Assuming you are using sIFR 3, :first-child is not supported as indicated by this page. However, sIFR can be made jQuery compatible, read more here.

Steps to replace parseSelector with
jQuery:

1 - Make sure you include the jQuery
JavaScript file.

2 - Remove all of the parseSelector
code at the bottom of sifr.js

3 - Add the following line:

var parseSelector = $;

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