内联属性样式中的CSS伪元素

时间:2013-11-22 06:27:58

标签: html css pseudo-element inline-styles

我已尝试使用以下网址中的示例。我尝试的是在内联属性style中应用css伪元素。不知何故,似乎没有用。我很感激任何建议。

http://www.w3.org/TR/2001/WD-css-style-attr-20010305

    <p style="{color: green; width: 10em} ::first-letter {float: left; font-size: 300%}">

This is an example of a paragraph with inline style attribute rules to create a spot effect, in this case, a drop-cap first letter.

</p>

2 个答案:

答案 0 :(得分:0)

尝试这样做

<p style="color: green; width: 10em"><span style="float: left; font-size: 300%">L</span>orem Ipsum</p>

答案 1 :(得分:0)

这是不可能的。您指的工作草案已超过12年。点击其中的“最新版本”链接,您将找到CSS Style Attributes,W3C推荐标准(“W3C标准”)。它最近获得批准。它不包含对HTML规范中style属性的更改,这确实是消息:该属性尚未得到增强,并且没有计划这样做。

结论取决于您使用该结构的原因。通常,只需为元素分配id属性,并在CSS中使用id选择器。