首页htmlfirst_of_typeCSS Property Value - 如何first-of-type; 改变子元素中的第一个元素

CSS Property Value - 如何first-of-type; 改变子元素中的第一个元素

我们想知道如何first-of-type; 改变子元素中的第一个元素。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div p:first-of-type {
  background: red;
}
</style>
</head>
<body>
  <div>
    <h1>Test</h1>
    <p>Something</p>
    <p>Something else</p>
  </div>
</body>
</html>