【HTML】自定义富文本设置行高
问题:由于设置行高没有类似设置字体或字体大小那样,比如设置字体样式document.execCommand('styleWithCSS', false, true)document.execCommand('fontname', false, '微软雅黑')这就需要我们自己去实现行高的效果:// 设置行距export const lineHeight = (value) => { // 获取当前的选区 let selection = window.getSelection(