<p>这是第一段文字</p> <p>这是第二段文字</p>接下来,我们可以使用CSS来对这两段文字进行样式设置。比如,让第一段文字加粗,第二段文字使用斜体:
<style> p:nth-of-type(1) { font-weight: bold; } p:nth-of-type(2) { font-style: italic; } </style>上述代码中,我们使用了nth-of-type选择器来选中第一段和第二段文本,并分别设置了font-weight和font-style属性来改变它们的样式。注意,nth-of-type选择器是CSS3中的新增选择器,需要保证浏览器支持。 通过以上设置,我们就可以同时对不同的文本段落进行样式设置,让网页更加美观、易读。