添加内联 CSS 伪元素

发布于 2024-12-03 23:42:26 字数 205 浏览 1 评论 0原文

是否可以内联添加伪元素声明。例如。我可以做以下内联吗?

.XYZ:after {
content: '';
width: 100%;
display: inline-block;}

<div class="XYZ"></div> /*Pseudo element should be declarer inline*/

Is it possible to add pseudo element declaration inline. For eg. can I do the following inline ?

.XYZ:after {
content: '';
width: 100%;
display: inline-block;}

<div class="XYZ"></div> /*Pseudo element should be declarer inline*/

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

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

发布评论

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

评论(3

清浅ˋ旧时光 2024-12-10 23:42:27

不,不可能通过内联 CSS 应用伪选择器,只能在

块或外部样式表文件中应用伪选择器。

想象一下,使用使用 content 属性的内联伪选择器构建电子邮件模板,坏人可能会造成我认为的伤害。所以这是不可能的。

No, it is not possible to apply pseudo selectors via inline CSS, that's only possible from within <style></style> blocks or external stylesheet file.

Imagine constructing an email template with inline pseudo selector that uses content property, bad guys could have done the harm I suppose. So it is not possible.

谜泪 2024-12-10 23:42:27

不行。伪元素样式只能在外部样式表或

标记内声明。

No. pseudo element stylings may only be declared in an external stylesheet or inside <style></style> tags.

合约呢 2024-12-10 23:42:27

Hacss 可能会提供您正在寻找的体验。

演示

Hacss may provide the experience you're looking for.

Demo

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