firefox中的kendo内联编辑器问题

时间:2013-12-05 14:03:41

标签: jquery firefox kendo-ui

我在我的应用程序中使用了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) 如何解决这个问题。

1 个答案:

答案 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;
}

此处示例:http://jsfiddle.net/OnaBai/T65Jk/