private void HangingIndent()
{
var paragraph = this.editorWebBrowser.Document.GetElementsByTagName("P");
int i = 0;
HtmlElement doc = editorWebBrowser.Document.Body;
foreach (HtmlElement P in paragraph)
{
P.SetAttribute("id", "i");
i++;
}
HtmlElement p = editorWebBrowser.Document.GetElementById("id");
p.Style = "MARGIN-LEFT: 15px; TEXT-INDENT: -15px";
}
I did this for hanging indent but this is not working....
I am using web browser control. help me out..

Replies
Know the answer? Post it — somebody with the same question will find it here.