我在我的应用程序中使用了kendo内联编辑器。我没有指定高度。 我给了css像
.k-editor-inline {
margin: 0;
box-shadow: none;
border-width: 1px;
padding: 5px 5px 5px;
background: none;
font-family:'Century Gothic';
font-size:13px;
border-color:#f0b14e;
}
最初在firefox中显示的高度非常低(几乎为0 px) 如何解决这个问题。
答案 0 :(得分:1)
将min-height
属性设置为所需的最小高度;
示例:
.k-editor-inline {
min-height: 16px;
margin: 0;
box-shadow: none;
border-width: 1px;
padding: 5px 5px 5px;
background: none;
font-family:'Century Gothic';
font-size:13px;
border-color:#f0b14e;
}