1
私は画像のスタイルをカスタマイズする隣接セレクタを使用すると、次のHTMLとしてレンダリングされる隣接セレクタが機能しないのはなぜですか?
!["dominating_sets_example2"](http://example.com/path/dominating_sets_example2.png)
*Fig. 1: The minimum dominating set of a graph*
によってマークダウンでキャプション付きの画像を挿入するhereから
<p>
<img src="http://example.com/path/dominating_sets_example2.png" alt="dominating_sets_example2"/>
<br>
<em>Fig. 1: The minimum dominating set of a graph</em>
</p>
を学びましたキャプション。
/* for image caption */
img + br + em {
font-style: normal;
display: inherit;
text-align: center;
font-size: 90%;
}
これは機能します。
ここで、画像にハイパーリンクを追加します。 HTMLは以下のようになります。
<a href="http://example.com/path/bus.png" rel="attachment wp-att-2362" data-rel="lightbox-0" title="">
<img src="http://example.com/path/bus.png" alt="compara_autocar_bus" width="610" height="675" class="aligncenter size-full wp-image-2362">
</a>
<br>
<em>
Fig. 1: Caption here (image from <a href="http://www.example.com/" target="_blank">here</a>)
</em>
私は以下の隣接セレクタを試しましたが、うまくいきません。
a + img + br + em {
font-style: normal;
display: inherit;
text-align: center;
font-size: 90%;
}
隣り合うセレクタに問題がありますか?