Why your CSS doesn't work :
Your HTML structure :
body
__ parent
____ blockquote
__ parent
____ blockquote
CSS :
body blockquote: first-child {
background-color: red;
}
What this CSS selector actually does is - it selects every blockquote
which occurs first in its parent and not body.
First-child doesn't work respective to the body tag when the elements are nested in other elements. It works respective to the parent.
Try using this instead :
td.wsite-multicol-col:first-child blockquote {
background: red;
}
This selects the first col
and sets styles for its child (blockquote
). It doesn't set style to first blockquote of the page.