CSS2 Browser Compatibility
Thursday, April 21st, 2005CSS2 specification opens new opportunities for web developers but before applying new features webmaster should know how popular browsers support them.
Descendant selectors
Syntax:
E1 E2
The following rule should set the font-style of all P elements that occurs anywhere within a PRE:
CSS code:
pre p {font-style: italic;}
HTML code:
<pre>
<p>This text should be italic style</p>
<div>
<p>This text should be […]