home HOME

CSS Basic
CSS HOME
CSS Introduction
CSS Syntax
CSS How To
CSS Background
CSS Text
CSS Font
CSS Border
CSS Outline
CSS Margin
CSS Padding
CSS List
CSS Table

CSS Advanced
CSS Dimension
CSS Classification
CSS Positioning
CSS Pseudo-class
CSS Pseudo-element
CSS Image Gallery
CSS Image Opacity
CSS Media Types
CSS Summary

CSS Examples
CSS Examples

References
CSS2 Reference
CSS2 Print
CSS2 Aural
CSS Units
CSS Colors
CSS Colorvalues
CSS Colornames

CSS Quiz
CSS Quiz
CSS Exam

Selected Reading
Web Statistics
Web Glossary
Web Hosting
Web Quality

W3Schools Forum

Helping W3Schools

pixels

CSS :first-child pseudo-class


CSS Reference Complete CSS Reference

Definition

The :first-child pseudo-class adds a special style to an element that is the first child of some other element.

Note: For :first-child to work in IE. A <!DOCTYPE> must be declared.

Examples

In the following example, the selector matches any <p> element that is the first child of a <div> element, and indents the first paragraph inside a div element:

div > p:first-child
{
text-indent:25px
}

The selector above will match the first <p> inside the <div> in the following HTML:
<div>
<p>
First paragraph in div.
This paragraph will be indented.
</p>
<p>
Second paragraph in div.
This paragraph will not be indented.
</p>
</div>

but it will not match the <p> inside this <div>:
<div>
<h1>Header</h1>
<p>
The first paragraph inside the div.
This paragraph will not be indented.
</p>
</div>

In the following example, the selector matches any <em> element that is the first child of a <p> element, and sets the font-weight to bold for the first em inside a p element:

p:first-child em
{
font-weight:bold
}

For example, the <em> in the HTML below is the first child of the paragraph:

<p>I am a <em>strong</em> man.</p>

In the following example, the selector matches any <a> element that is the first child of any element, and sets the text-decoration to none:

a:first-child
{
text-decoration:none
}

For example, the first <a> element in the HTML below is the first child of the paragraph and will not be underlined. The second <a> in the paragraph will be underlined:

<p>
<a href="http://www.w3schools.com">Visit W3Schools!</a>
<a href="http://www.w3schools.com">Visit W3Schools!</a>
</p>


Try-It-Yourself Demos

:first-child (does not work in IE unless <!DOCTYPE> is declared)
This example demonstrates the use of the :first-child pseudo-class.


CSS Reference Complete CSS Reference


Add automated outbound phone calls to your application!

   Enhance your project with this inexpensive reliable Web Service. Phone calls can be sent as pre-recorded sound files, text to speech, or by using a combination of both. You can also change call flow based on interaction.

Phone Notify! is being utilized for fraud prevention, emergency notification calls, courtesy calls, automated telemarketing calls, voice broadcasts, automated dialers, appointment reminders and more.

50 FREE phone calls for W3School users >


Jump to: Top of Page or HOME or Printer Friendly Printer friendly page

W3Schools provides material for training only. We do not warrant the correctness of its contents. The risk from using it lies entirely with the user. While using this site, you agree to have read and accepted our terms of use and privacy policy.

Copyright 1999-2007 by Refsnes Data. All Rights Reserved.

Validate Validate W3C-WAI level A conformance icon W3Schools was converted to XHTML in December 1999
SITE SEARCH
 
About W3Schools
W3Schools Forum
Shopping Cart
ASP.NET
Shopping Cart
WEB HOSTING
$15 Domain Name
Registration
Save $20 / year!
UK Domain Names
UK Web Hosting

Alojamiento Web
Buy UK Domain Names
Register Domain Names
Cheap Domain Names
Cheap Web Hosting
Best Web Hosting
Domain Name Registration
PHP MySQL Hosting
Top 10 Web Hosting
Web Hosting Providers
Web Hosting Company
WEB BUILDING
Convert HTML to XML
Website Templates
Flash Templates
Website Builder
Internet Business Opportunity
Custom Programming
Web Design Forum
Programming Forum
FREE Trial or Demo
Web Content Manager
Forms,Web Alerts,RSS
Free Thumbnail Maker
Free Video Tutorials
HTML Exam
SHOPPING
UK Wholesalers
UK Wholesale
Online Casinos
Batteries
ONLINE DEGREE
Advance Your Career
with Drexel University
Bachelor's & Master's
Tech Degrees ONLINE
US Web Design Schools
YELLOW PAGES
www.nettkatalogen.no
www.gulex.dk
www.gulex.se
www.gelbex.de

pixels