在Firefox中使XML + CSS文件内容可编辑

时间:2013-07-19 13:00:28

标签: css xml firefox contenteditable

我有一个我希望在Firefox中显示的XML文档以及指定的CSS文件。我想在firedox中启用编辑/设计模式,以使用户能够编辑文本内容。与contenteditable =“true”相同,也适用于HTML内容。这是否可以使用XML + CSS内容?

sample.xml中

<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="sample.css" ?>
<doc>
    <red>red text</red>
    <blue>blue text</blue>
    <green>and... green text</green>
</doc>

sample.css

red {
    display: block;
    color: red;
}

blue {
    display: block;
    color: blue;
}

green {
    display: block;
    color: green;
}

谢谢, INGO

0 个答案:

没有答案
相关问题