这个在汉字边上标注假名的功能,是词典本身就有的还是你添加的?其他词典能也可以添加这个功能吗?
这应该是辞典数据内置的。
mk3.css里面
spellout {
font-weight: bold;
font-size:0;
}
spellout:before {
font-size:1rem;
content:"━";
}
改为
spellout {
font-weight: bold;
font-size:1em;
}
spellout:before {
font-size:0;
content:"━";
}
哦吼,原来如此 ![]()
爱你哥们………

