删除样式元素中宽度等属性

时间:2015-05-15 10:10:58

标签: c# html-agility-pack

我需要使用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();
      }
   }
}

但无法定位样式中的单个元素(因为我不想完全删除样式)

0 个答案:

没有答案