GetComputedStyle(string style) to the rescue! Using this function you can retrieve the effective/cascaded style on the element in question. For example: HtmlStyle visibleStyle = myDiv.GetComputedStyle( "visibility" ); HtmlStyle displayStyle = myDiv.GetComputedStyle( "display" ); These...