After new update vertical lines do not display in desktop only.
Before and after:
The font is different. Does that tell you something?
You should share the fieldâs HTML as well as the relevant parts in the template.
Because the âbeforeâ pic was captured in phone.
<style>
.parrafos{display: flex;}
</style>
<FONT SIZE=10>
{{Kanji}}
<hr>
<div class="parrafos">
<p style="color:#0D8BB7;">
{{éłèȘăż}}
</p>
<hr>
<p style="color:#BC300D;">
{{èšèȘăż}}
</p>
</div>
Iâm not a CSS expert, so I donât know why that <hr> looked vertical before and it doesnât work on AnkiDroid. So let me suggest to you a hacky alternative:
HTML:
<FONT SIZE=10>
{{Kanji}}
<hr>
<div class="parrafos"><span style="color:#0D8BB7;">{{éłèȘăż}}</span><span style="color:#BC300D;">{{èšèȘăż}}</span></div>
Styling:
.parrafos span:first-child {
border-right: 1px solid white;
padding: 5px; margin: 5px;
}
Try adding
hr {border-width: 1px; border-style: inset; height: auto; margin-inline: auto;}
to the style section. This should revert changes of hr styles in Ankiâs reviewer css.
I suppose itâs because flexbox overrides sizing of its children. So the default hrâs 0-height rectangle gets collapsed horizontally (default âflex-growâ is 0) and stretched vertically to the full height of the container.
This is very non-standard use, however, so no wonder it is fragile. Iâd say using a typical <div> element to draw a thin vertical rectangle with explicit dimensions would be a more future-proof solution.
It worked, thank you!

