Hello,
But how does it work for my exemple?
```
Thanks in advance for your answers.
But how does it work for my exemple?
```
<br class="ibp-rteFontSize-5"/><span style="font-size: 16px">My Text </span></div>```When I write ( in C#):
attrValue = en.StyleAttributes["font-size"];
if (attrValue != null)
{
if (String.Compare(attrValue, "100%") != 0)
{
if (attrValue.Contains("pt"))
{
attrValue = attrValue.Replace("pt", "");
}
if (attrValue.Contains("px"))
{
attrValue = attrValue.Replace("px", "");
}
styleAttributes.Add(new FontSize { Val = attrValue });
}
The texte "My Texte" disapears.Thanks in advance for your answers.