diff --git a/src/components/HTMLEngineProvider/BaseHTMLEngineProvider.tsx b/src/components/HTMLEngineProvider/BaseHTMLEngineProvider.tsx
index 57d9699dd6976..e7a90e19a2a99 100755
--- a/src/components/HTMLEngineProvider/BaseHTMLEngineProvider.tsx
+++ b/src/components/HTMLEngineProvider/BaseHTMLEngineProvider.tsx
@@ -61,7 +61,7 @@ function BaseHTMLEngineProvider({textSelectable = false, children, enableExperim
tagName: 'comment',
getMixedUAStyles: (tnode) => {
if (tnode.attributes.islarge === undefined) {
- return {whiteSpace: 'pre'};
+ return {whiteSpace: 'pre', flex: 1, justifyContent: 'center'};
}
return {whiteSpace: 'pre', ...styles.onlyEmojisText};
},