xml中的样式cdata

时间:2012-02-28 15:32:47

标签: xml styles

是否可以在cdata中使用样式?在“Something Disclaimer”之后我需要换行。在描述中。是否有可能制作“Something Disclaimer!”胆大?

我有以下XML:

<?xml version="1.0" encoding="utf-8"?>
<listings>
<house>
    <owner>
        <firstname>John</firstname>
        <lastname>Doe</lastname>
        <website>http://www.mysite.com</website>
    </owner>
    <address>
        <street>1 place</street>
        <city>Los Angeles</city>
        <state>CA</state>
        <postal_code>91011</postal_code>
        <country>USA</country>
    </address>
    <description><![CDATA[Something Disclaimer! blah blah blah]]></description>
</house>

1 个答案:

答案 0 :(得分:0)

CSS仅在元素上运行(pseudo-things除外),这不会有任何帮助,而不是任意文本。

CDATA部分对CSS完全透明。

所以,不。这是不可能的。您必须先修改标记。