ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# 文字设置 可以设置文字大小,可以设置字体。注意:文字大小只能7个值,多了无效。[在线预览](http://output.jsbin.com/heditaz) ```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>xeditor</title> <script src="https://unpkg.com/xeditor"></script> </head> <body> <div id="xe" class="xe"></div> <div id="html"></div> <script> var myEditor = new window.xEditor('#xe') myEditor.config({ font: { fontname: [ 'Courier New', ], } }); myEditor.create(); </script> </body> </html> ```