I'm setting attribute style for paragraph
IHTMLElement using
Elem.style.setAttribute('TEXT-ALIGN','center',0);
The style is being written in html, but TWebBrowser component does not center the text.
After saving and reopening the html document the text is shown in the center.
What should I do for style changing take into effect immediately?
The following works fine for me (in D7, on Win7 64-bit with IE 11).
After clicking Button1, the WebBrowser displays "Some text" right-aligned, as expected. After clicking Button2, "some text" immediately displays center-aligned. Hopefully, a side-by-side comparison with your code will reveal what makes the difference. If the following doesn't help, you might get a better answer if you add a SSCCE to your q.
HTML
Code
Update: The OP mentioned in a comment using IE6 on WinXP. I tried by code in a WinXP VM with IE8 installed and got the behaviour the OP described. After calling SetAttribute, "text-align: center" was added as the last attribute of the style and was not acted upon, the text remaining right-aligned (and the original "text-align: right", capitalised, appeared at the start of the style attribute list).
However, the following change resulted in the text being centered as desired.
(I removed the code to get and use the text-align attribute because the GetAttribute provoked an exception on WinXP/IE8.)
Presumably someone au fait with the details of the history of IE's DOM and rendering could explain the reason for this difference between the behaviour of IE11 and IE6/8.