nicEdit字体大小和字体系列不起作用

时间:2015-07-07 03:34:08

标签: javascript jquery html css nicedit

我在我的网站上使用nicEdit作为文本编辑器。我包括这个:

除了字体大小和字体系列外,所有按钮都有效,所选文本不会更改为我选择的字体大小和字体系列。 怎么了?

1 个答案:

答案 0 :(得分:0)

我可以看一下你的代码(css和javascript)吗?

检查您的font-family是否与当前计算机的操作系统兼容。 在某些情况下,字体系列可以在Windows 8中正常工作但在Windows 7中无法正常工作

在你的CSS中,你可以试试这个:

.text {
        font-family:'Lucida Handwriting', 'Segoe Script', 'Monotype Corsiva';
        /* Where if the first font family is not available, the browser will use the second one, and if the second one is not also available, it will finally use the last one */
    }
相关问题