このブロックでは、
[details="Summary"]
This text will be hidden
[/details]
display: block をすべての子要素または兄弟要素に適用する CSS ルールが 2 つあります。
details[open] > *, details[open] .lightbox-wrapper {
display: block;
}
details[open] > summary:first-of-type ~ *,
details.open > summary:first-of-type ~ * {
display: block;
}
これは、インライン表示されるべき各要素がブロックとして表示され、すべての幅を占有してしまうため問題となります。たとえば、span やリンクなどです。これらのルールの目的は何でしょうか? ![]()
例:
[details="Hidden"]
Enhanced image and comparison with the same halo on Earth:


Though Mars's atmosphere is composed of 95% of carbon dioxide (CO<sub>2</sub>), the halo was produced by water (H<sub>2</sub>O) ice crystal, hence the similarity with the common Earth 22° [halo](https://en.wikipedia.org/wiki/22%C2%B0_halo?oldformat=true). It's exactly the same, in fact.
[/details]
↓
Hidden
Enhanced image and comparison with the same halo on Earth:
Though Mars’s atmosphere is composed of 95% of carbon dioxide (CO2), the halo was produced by water (H2O) ice crystal, hence the similarity with the common Earth 22° halo. It’s exactly the same, in fact.
ここに3つのインライン要素があります:<sub>とリンクです。
セーフモードを有効にし、カスタムプラグインがインストールされていなくてもすべてのプラグインを無効にすると、問題は解消されます。

try.discourse.org からのビデオ例:



