User-271186128 posted
Hi JasonChin,
You could use F12 developer tools to check the CSS style, then, you can find that the issue is related to the text-align CSS property.
When using the Chrome browser, the user agent will add the following css style (include the text-align css property):

But in IE/Edge browser, they will not add the user agent css style, just contains the inline style. Like this:

So, the behavior is different.
Besides, with refer to
this article, we can see that IE/Edge browser not support
the text-align: start.
Best regards,
Dillion