标签:
<style type="text/css"> p:first-child { color:red }; </style> <p>I am a <em>strong</em> man. I am a <em>strong</em> man.</p> <p>I am a <em>strong</em> man. I am a <em>strong</em> man.</p>
<style type="text/css"> p > em:first-child { color:red } </style> <p>I am a <em>strong</em> man. I am a <em>strong</em> man.</p> <p>I am a <em>strong</em> man. I am a <em>strong</em> man.</p>
<style type="text/css"> p:first-child em { color:red } </style> <p>I am a <em>strong</em> man. I am a <em>strong</em> man.</p> <p>I am a <em>strong</em> man. I am a <em>strong</em> man.</p>
标签:
原文地址:http://www.cnblogs.com/iceflorence/p/5798398.html