我正在尝试将某种样式应用于我的标题中的第一个字母,它由文本组成。我的网页在这里:http ://smarterinfive.com
它在 Chrome 中运行良好,但在 FF 中根本不行。以下是我已经尝试将我的样式应用到的属性,但无济于事(在 FF 中):
header[role="banner"] .branding:first-letter {
background: #000;
}
.branding:first-child:first-letter {
background: #000;
}
.branding h1 a:first-child:first-letter {
background: #000;
}
似乎任何有first-letter
或first-child:first-letter
没有工作的东西,但first-child
只有IS 的一切。
我也试过:
!important
在这些末尾添加。- 在开发人员工具中查看它,根本没有显示该属性。