我正在使用summernote,有时我需要比字体大小列表中可用值更高的字体。这是我当前的代码:

$('#summernote').summernote({
  toolbar: [
    ['style', ['style']],
    ['fontsize', ['fontsize']],
    ['font', ['bold', 'italic', 'underline', 'clear']],
    ['fontname', ['fontname']],
    ['color', ['color']],
    ['para', ['ul', 'ol', 'paragraph']],
    ['height', ['height']],
    ['insert', ['picture', 'hr']],
    ['table', ['table']]
  ],
  height: 585,
  focus: false
});

我试图放入工具栏字体大小(数字如 10、20、25、30)但它没有帮助。有没有办法设置我自己的自定义字体大小列表?

最佳答案

要设置自定义字体大小列表,请将其添加到您的选项中:) 选项:

$('#summernote').summernote({
    fontSizes: ['8', '9', '10', '11', '12', '14', '18', '24', '36', '48' , '64', '82', '150']
});

关于font-size - 如何在summernote中设置自定义字体大小列表?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36785667/

10-12 23:14