How to select an <em> html element that is Not a child of any <p> element?
/* CSS */ em {font-style: italic; background yellow} ::autonomous-not-child-of-a-p-element-? :: em {font-style:normal; background gray} Given two situations both using <em> differently, in need to be styled differently. The first case contains a paragraph element and within it one or multiple…