添加内联 CSS 伪元素
是否可以内联添加伪元素声明。例如。我可以做以下内联吗?
.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不,不可能通过内联 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.不行。伪元素样式只能在外部样式表或
标记内声明。
No. pseudo element stylings may only be declared in an external stylesheet or inside
<style></style>
tags.Hacss 可能会提供您正在寻找的体验。
演示
Hacss may provide the experience you're looking for.
Demo