使用HAP添加样式表

时间:2012-12-29 16:06:21

标签: c# .net html css html-agility-pack

我有一个样式表存储为一个字符串,我正在尝试使用Html Agility Pack添加到已解析的HtmlDocument。我无法设置style节点的InnerText,因为它没有setter。这样做的最佳方式是什么?

1 个答案:

答案 0 :(得分:1)

未经测试,但应该给你一个想法:

// doc is the HtmlDocument
var style = doc.CreateElement("style");
var text = doc.CreateTextNode("some CSS here");
style.AppendChild(text);
doc.DocumentNode.AppendChild(style); // or, AppendChild to any node