I'm trying to style the first word of a specific sentence using only CSS (i.e. I can't change the HTML). I feel that I'm close to the answer but I can't seem to get it right. The CSS selector I'm using is:
main > h2:nth-child(2)+p {
color: red;
}
I can't post the HTML here cause it's not getting formatted right, but it can be found on this JSFiddle: https://jsfiddle.net/gk0bwtvs/20/
Thanks,
brld
Again: I cannot change the HTMl, or add any sort of Javascript.