admin管理员组文章数量:1289951
We are trying to display 3/16" in the text on a wordpress website but are unable to show this in the same format as other fractions like ½ or ¼. We have a measurement to write into text of 1 3/16" but want this to appear like ½ or ¼.
Thanks
We are trying to display 3/16" in the text on a wordpress website but are unable to show this in the same format as other fractions like ½ or ¼. We have a measurement to write into text of 1 3/16" but want this to appear like ½ or ¼.
Thanks
Share Improve this question asked Jul 15, 2021 at 13:51 PatrickPatrick 211 bronze badge 1 |1 Answer
Reset to default 2We can paste <sup>3</sup>⁄<sub>16</sub>
into the visual editor
or write the HTML in the code editor:
<!-- wp:paragraph -->
<p>Testing <sup>3</sup>⁄<sub>16</sub> fraction</p>
<!-- /wp:paragraph -->
or use the subscript and superscript on the text paragraph selections in the visual editor:
本文标签: Displaying fractions in text
版权声明:本文标题:Displaying fractions in text 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741439699a2378840.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
<sup>3</sup>⁄<sub>16</sub>
see e.g. stackoverflow/questions/7525977/… – birgire Commented Jul 15, 2021 at 14:10