jQuery execCommand for superscript and subscript not properly toggling

岁酱吖の 提交于 2020-01-05 05:45:46

问题


I'm trying to create a text editor using jQuery and execCommand. Everything was going good until I noticed that both superscript and subscript aren't properly toggling.

This jsFiddle (http://jsfiddle.net/k8F4P/) should illustrate the problem.

It is possible that it is simply my browser, but I'm using the latest version of Chrome for Mac.


回答1:


Turned out the issue was that the stylesheet normalize.css was setting the sub and sup tags' vertical-align to baseline and this was preventing the correct toggling, but only in Chrome. The simple solution is to set sub to vertical-align: sub and sup to vertical-align: super.



来源:https://stackoverflow.com/questions/17517839/jquery-execcommand-for-superscript-and-subscript-not-properly-toggling

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!