「:nth-of-type」疑似セレクターを使用せずに、このコードの最初の段落の最初の文字のスタイルを設定するにはどうすればよいですか?
<div id="content-wrapper">
<div id="breadcrumbs">
<ul>
<li><a href="">Link</a></li>
</ul>
</div>
<article>
<section>
<h2>Page Name</h2>
<h3>Title</h3>
<p>Here, i'd like to style the first letter here</p>
</section>
</article>
</div>