我正在使用Kendo UI编辑器,并希望更改由影响margin-bottom:1em
标记的内联样式添加的默认<P>
。
我希望它默认为.5em
。
现在我正在使用defaultTool&#34; insertParagrah&#34;删除Paragraphs但我宁愿影响添加到Kendo iframe中的那个。
var defaultTools = kendo.ui.Editor.defaultTools;
defaultTools["insertParagraph"].options.shift = true;
$( "#message" ).kendoEditor(
{
messages: {
fontSizeInherit: ""
},
tools: [
{
name: "fontSize",
items: [
{ text: "8px", value: "8px" },
{ text: "10px", value: "10px" },
{ text: "12px", value: "12px" },
{ text: "14px", value: "14px" },
{ text: "16px", value: "16px" }]
},
"foreColor", "bold", "italic", "underline", "strikethrough", "justifyLeft", "justifyCenter", "justifyRight", "insertOrderedList", "insertUnorderedList",
"indent", "outdent"
]
}
);