阅读下面的css代码,以下( )css样式能够将内容为“第一个段落。”的p标签背景设置为red( )
<h1>这是标题</h1>
<p>第一个段落。</p>
<p>第二个段落。</p>
<p>第三个段落。</p>
<p>第四个段落。</p>
p:nth-of-type(0){background:red;}
p:nth-of-type(1){background:red;}
p:nth-of-type(2){background:red;}
p:nth-of-type(3){background:red;}