**Steps to replicate the issue** (include links if applicable):
* Visit https://en.wikipedia.org/wiki/Soviet_Civil_Administration?useformat=mobile
**What happens?**:
* Note the infobox.
{F87453603}
**What should have happened instead?**:
Content should be "inline" instead (well, there are some `<br>`s).
{F87454528}
(from desktop)
**Software version** (on `Special:Version` page; skip for WMF-hosted wikis like Wikipedia):
**Other information** (browser name/version, screenshots, etc.):
The display is caused by
```lang=css
body.skin--responsive.skin-minerva .mw-parser-output .infobox > tbody,
body.skin--responsive.skin-minerva .mw-parser-output .infobox > caption {
display: flex;
flex-flow: column nowrap;
}
```
coming from [[https://gerrit.wikimedia.org/g/mediawiki/extensions/WikimediaMessages/+/b1209fd8cb7b88470e2daa26b92615d84c4cd572/modules/ext.wikimediamessages.styles/infobox.less#57|ext.wikimediamessages.styles/infobox.less]].
But this is only occurring now (well, at least as visible as it is, it may have been relevant before Parsoid but little-noticed) because Parsoid is adding `<span class="mw:Entity"/>` to content which has basically 0 semantic meaning.
```lang=html
<caption class="infobox-title" style="font-size: 125%;">Soviet Civil Administration
<br>
<a rel="mw:WikiLink" href="//en.wikipedia.org/wiki/Korean_language" title="Korean language">Korean</a>
<span typeof="mw:Entity">:</span>
<span typeof="mw:Entity"> </span>
<span title="Korean-language text"><span lang="ko-Hang">소비에트 민정청</span></span>
<link rel="mw:PageProp/Category" href="./Category:Articles_containing_Korean-language_text"><link rel="mw:PageProp/Category" href="./Category:Articles_containing_Korean-language_text">
<br>
<a rel="mw:WikiLink" href="//en.wikipedia.org/wiki/Russian_language" title="Russian language">Russian</a>:
<span lang="ru">Советская зона оккупации Кореи</span>,
<small><a rel="mw:WikiLink" href="//en.wikipedia.org/wiki/Romanization_of_Russian" title="Romanization of Russian">romanized</a>:
<span typeof="mw:Entity"> </span></small>
<span title="Russian-language romanization"><i lang="ru-Latn">Sovetskaya zona okkupatsii Korei</i></span>
<link rel="mw:PageProp/Category" href="./Category:Articles_containing_Russian-language_text">
</caption>
```