How can you target all paragraphs and list items simultaneously in CSS?
p + li {color: green;}
p > li {color: green;}
p {color: green;} li {color: green;}
p, li {color: green;}