在xml中样式cdata



是否可以在cdata中使用样式?我需要在描述中的"某些免责声明!"之后换行。有没有可能把"免责声明"写得更大胆?

我有以下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>

CSS只在元素上操作(伪内容除外,这在这里没有帮助),而不是任意的文本片段。

CDATA部分对CSS是完全透明的。

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

相关内容

  • 没有找到相关文章

最新更新