New to Kendo UI for Angular? Start a free 30-day trial
EditorCssSettings
Represents the settings for applying custom CSS styles to the Editor in iframe mode (see example).
typescript
const cssSettings: EditorCssSettings = {
content: '.k-editor { color: red; }',
path: '/styles/editor.css',
keepBuiltInCss: false
};
Name | Type | Default | Description |
---|---|---|---|
content? |
|
Sets the CSS rules to apply. | |
keepBuiltInCss? |
|
Determines if custom styles override or extend built-in styles. | |
path? |
|
Sets the path to an external style sheet. |