In javascript I can easily use JQuery to get css, for example:
$("#id").css();
I need to do the same in c#. Im getting the html source into string (usually parsing it with agility pack), and I need to get the css values of a specific htmlnode.
does a way doing so exist?
thanks.