我需要使用HTML Agility Pack删除样式元素内部的宽度。
我尝试使用:
public static void RemoveStyleAttributes(this HtmlDocument html)
{
var elementsWithStyleAttribute = html.DocumentNode.SelectNodes("//@style");
if (elementsWithStyleAttribute!=null)
{
foreach (var element in elementsWithStyleAttribute)
{
element.Attributes["style"].Remove();
}
}
}
但无法定位样式中的单个元素(因为我不想完全删除样式)