First Child Pseudo-Selector : selector « Style Basics « HTML / CSS






First Child Pseudo-Selector

 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>HTML/XHTML:  &raquo; First Child Pseudo-Selector</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />

<style type="text/css">
p:first-child { color: red;}
</style>
</head>
<body>
<div class="head">First Child Pseudo-Selector</div>
<div class="content">
  <p>This is a test.</p>
  <p>This is a test.</p>
  <div>
  <p>I should be red because I am the first child of div.</p>
  <p>Second child of div, thus not red.</p>
  </div>
</div>
</body>
</html>

   
  








Related examples in the same category

1.Universal Selector
2.The Type Selector
3.The Class Selector
4.The ID Selector
5.The Child Selector
6.The Descendent Selector
7.The Adjacent Sibling Selector
8.Attribute Selectors
9.Using Attribute Selectors to select different textfields
10.Using Attribute Selectors to choose anchor by link type
11.Using Attribute Selectors to choose only mailto anchor type
12.Using Attribute Selectors to choose linked file type for anchor
13.Using Attribute Selectors to choose php links
14.Using Dynamic Pseudo-Classes to change color
15.Using Dynamic Pseudo-Classes to add text decoration
16.Dynamic Pseudo-Classes: hover effect
17.Selectors and Grouping
18.Class Selectors: A class represents something that you can have more than one of.
19.chain together class names within the class attribute.
20.An id is used but once per document.
21.Universal selectors are wildcard selectors.
22.Descendant Selectors
23.Next Sibling Selectors
24.Attribute Substring Selectors
25.Pseudo-Element Selectors
26.Dynamic Pseudo-Class Selectors
27.Using Different Selectors to Apply Styles
28.Before and After Pseudo Selectors
29.Selector Basics
30.Style sheet for example demonstrating adjacent sibling and child selectors
31.paragraph with id selector
32.Direct Child Selectors
33.A specific selector wins, the last one wins
34.Select one item
35.direct adjacent sibling combinator