I felt this was a good place for a canonical answer as the question is general and quite clear, but the original accepted answer isn't quite right. I explain why the accepted answer is flawed in a later section, but first I'll cover how to do it the right way.
The :first-child pseudo-class, introduced in CSS2.1, represents the very first child of its parent. That's it. There's a very common misconception among web developers that it picks up whichever child element is the first to match some other conditions specified in the same compound selector. Due to the way selectors work, that is simply not true.
Selectors level 3 introduces a :first-of-type pseudo-class, which represents the first element among siblings of its element type. However, it does not look at anything else like the class or ID attribute; only its type. In your question, the type of the element you want to match is p.
Unfortunately, there is no similar :first-of-class pseudo-class for matching the first child element of a given class (at least not yet1).
One workaround that Lea Verou and I came up with for this (albeit totally independently) is to apply styles to all your elements with that class:
/*
* Select all .red children of .home, including the first one,
* and give them a border.
*/
.home > .red {
border: 1px solid red;
}
Then "undo" the styles for elements with the class that come after the first one, using the general sibling combinator ~ in an overriding rule:
/*
* Select all but the first .red child of .home,
* and remove the border from the previous rule.
*/
.home > .red ~ .red {
border: none;
}
Now only the first element with class="red" will have a border.
Here's an illustration of how the rules are applied:
<div class="home">
<span>blah</span> <!-- [1] -->
<p class="red">first</p> <!-- [2] -->
<p class="red">second</p> <!-- [3] -->
<p class="red">third</p> <!-- [3] -->
<p class="red">fourth</p> <!-- [3] -->
</div>
No rules are applied; no border is rendered.
This element does not have the class red.
Only the first rule is applied; a red border is rendered.
This element has the class red, but it's not preceded by any elements with the class red in its parent. Thus the second rule is not applied, and the element keeps its border.
Both rules are applied; no border is rendered.
This element has the class red. It is also preceded by at least one other element with the class red. Thus both rules are applied, and the second border declaration overrides the first, thereby "undoing" it, so to speak.
As a bonus, although it was introduced in Selectors 3, the general sibling combinator is actually pretty well-supported by IE7 and newer, unlike :first-of-type and :nth-of-type() which are only supported by IE9 onward. If you need good browser support, you're in luck.
In fact, because the sibling combinator is the only important component in this technique, and it has such amazing browser support, that makes this technique very versatile — you can adapt it for filtering elements by other things, besides class selectors:
You can use this to work around :first-of-type in IE7 and IE8, by simply supplying a type selector instead of a class selector (again, more on its incorrect usage here in a later section):
article > p {
/* Apply styles to article > p:first-of-type, which may or may not be :first-child */
}
article > p ~ p {
/* Undo the above styles for every subsequent article > p */
}
You can filter by attribute selectors or any other simple selectors instead of classes.
You can also combine this overriding technique with pseudo-elements.
Of course, this means you must know what the default styles will be for your other sibling elements so you can override the first rule. Additionally, since this involves overriding rules in CSS, you can't achieve the same thing with a single selector for use with the Selectors API, or Selenium's CSS locators.
Although the .red:nth-of-type(1) solution in the original accepted answer by Philip Daubmeier works (which was originally written by Martyn but deleted since), it does not behave the way you'd expect it to.
For example, if you only wanted to select the p in your original markup:
<p class="red"></p>
<div class="red"></div>
Then you can't use .red:first-of-type (equivalent to .red:nth-of-type(1)), because each element is the first (and only) one of its type (p and div respectively), so both will be matched by the selector.
As another example, if the first element of a certain class is also the first of its type, the pseudo-class will work, but this happens only by coincidence. This behavior is demonstrated in Philip's answer. The moment you stick in an element of the same type before this element, though, the selector will fail. Taking your updated markup:
<div class="home">
<span>blah</span>
<p class="red">first</p>
<p class="red">second</p>
<p class="red">third</p>
<p class="red">fourth</p>
</div>
Applying a rule with .red:first-of-type will work, but once you add another p without the class:
<div class="home">
<span>blah</span>
<p>dummy</p>
<p class="red">first</p>
<p class="red">second</p>
<p class="red">third</p>
<p class="red">fourth</p>
</div>
Your selector will immediately fail, because the first .red element is now the second p element.
1 If the :nth-match() pseudo-class comes to pass with Selectors level 4, we may be able to use :nth-match(1 of .cls), where .cls is a class selector, in lieu of a hypothetical .cls:first-of-class selector.