I want to retrieve the width and hight of html element with Htmlagilitypack

WarezMaN

New Member
How to retrieve the width and height of img element with \[code\]HtmlAgilityPack\[/code\] I do this like this..\[code\] HtmlAgilityPack.HtmlAttribute width = link.Attributes["width"]; HtmlAgilityPack.HtmlAttribute height = link.Attributes["height"];\[/code\]but the width and height is in most cases null. How to get the css height and width?
 
Back
Top