Hi,
How do I style a <p> that's followed by a <ul> using selectors? I know how to style the <ul> that follows a <p> (the '+' selector does that), but how do I go the other way? In other words, how do I indicate "precedes" instead of "follows"?
:n-child won't work for me in this case since I don't want to lock in a specific page order beyond the sibling relationship between <p> and <ul>.
Basically I want my style to affect the E1 instead of the E2 (as W3C refers to them).
Thanks,
Glenn