apply css only for sibling code example
Example: css selector for sibling element
/* Paragraphs that come immediately after any image */
img + p {
font-weight: bold;
}
/* Paragraphs that come immediately after any image */
img + p {
font-weight: bold;
}