我有以下两段由 Wordpress 主题生成的代码。第一部分代码是为 WP 页面生成的:
<div class="postinner">
<div itemprop="name">
<h1 class="pagetitle">My Title</h1>
</div>
<p>First line of text</p>
<p>Second line of text</p>
</div>
第二部分代码是为 WP Post 生成的:
<div class="postinner">
<article itemtype="http://schema.org/Article" itemscope="" role="article">
<div itemprop="headline">
<h1 class="pagetitle">Hello World!</h1>
</div>
</article>
</div>
我无法弄清楚 CSS 选择器专门针对第一段代码的“itemprop DIV”中的 H1 标记的文本并将其居中。
此外,我还想在 WP Post 中使用不同的文本颜色来定位和设置 H1 标签的样式,但同样无法弄清楚 CSS 选择器。