I want to know is there any way to get the following example of CSS to work as I intend it to?
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.col p:first-child {
background:yellow;
}
</style>
</head>
<body>
<div class="col">
<h1>Woot</h1>
<p>I am a super nun. I am a super nun.</p>
<p>I am a super nun. I am a super nun.</p>
</div>
</body>
</html>
Basically I need the first <p> of an element to be styled a certain way... but first-child doesn't work if it's the second child (duh), even if I attempt to say: "the first <p> element in a parent (i.e. .col p:first-child)".
Is it possible to select not the first-child, but the first-child of a specific type in CSS?
p. – BoltClock♦ May 26 '11 at 17:38