You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## How to apply the CssFiles workaround if I do need to use telerik:EditorCssFile?
34
+
35
+
If the CssFiles property is already set then it is up to the developer to decide what CSS and font settings to apply to the content area by having in mind the verified Chrome/Chromium bug.
36
+
37
+
So if you apply a font with rem to the iframe content area
38
+
39
+
````CSS
40
+
body {
41
+
font-size: 1rem
42
+
}
43
+
````
44
+
45
+
via the CssFiles property, this will trigger the browser bug.
46
+
47
+
If the font is not specified or set in pixels
48
+
49
+
````CSS
50
+
body {
51
+
font-size: 12px
52
+
}
53
+
````
54
+
55
+
the problem will not happen.
56
+
57
+
You can test with a regular editable div element and you will reproduce the same problem when the body font-size is set in rem - http://dojo.telerik.com/AFoHOpOf/2.
0 commit comments