我可以在css中应用脚本吗?

时间:2014-09-11 18:25:54

标签: css

前两对花括号位于一个字符串内,并不标记选择器的末尾。

This is a valid CSS 2.1 rule.

p[example="public class foo\
{\
    private int x;\
\
    foo(int x) {\
        this.x = x;\
    }\
\
}"] { color: red }

如果有人能给我一个在css中使用这样的脚本的例子,这将非常有用。

1 个答案:

答案 0 :(得分:5)

当然,这是你的榜样:Working fiddle

<p example="public class foo{    private int x;    foo(int x) {        this.x = x;    }}">
    test text
</p>

的CSS:

p[example="public class foo\
{\
    private int x;\
\
    foo(int x) {\
        this.x = x;\
    }\
\
}"] { color: red }

请不要问我为什么有人会想要使用这个...我相信w3文档的目的是为了表明你可以编写多行属性选择器......