я узнал от here вставить изображение с титрами в Markdown поПочему смежный селектор не работает?
!["dominating_sets_example2"](http://example.com/path/dominating_sets_example2.png)
*Fig. 1: The minimum dominating set of a graph*
, который отображается как следующий HTML,
<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%;
}
Что не так с моими соседними селекторами?