Webix.alert and character-size

i use the alert-box for info-message and i need a font-size 8
webix.alert({text:“” + msgText + “” …
if the text-messge is long and need more then 1 row, the rows are overlapped.
do you know a workaround
thank you very much
Roman

Hello ObiWanKenobi,
Could you please clarify the use-case:

the rows are overlapped

If your msgTex is very long and without spaces , you need to use css overflow-wrap: break-word;

If msgText is just very long (takes several spaces) text with spaces, the problem with overlapped rows can be in css property line-height which can be less then font-size: 8px;
Please take a look at the snippet: Code Snippet
In case this does not solve your problem and there are other factors, please provide your example to reproduce the issue.

You can use div with styles Code Snippet