i need selector for selecting A element that directly followed by B element
<style>
/* B that directly preceded by A*/
A+B {
}
/* what the selector for selecting A that directly followed by B ????? */
</style>
<a>some text</a>
<b>some text</b>