Why does the highlight focus on "ort" instead of "fort"?
It appears this occurs when there are two f
's. When I substitute f
with other letters, like d, it shows correctly. Could this be a bug in Chrome?
Chrome version is chrome83. add: It seems to be related to the font.
https://i.stack.imgur.com/c8RNn.png
body {
font-size: 30px;
}
.highlight-font {
color: green;
}
<div>
<span>ef</span><span class="highlight-font">fort</span>
</div>