spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

Grouping & Contextual Selectors

Developer News
News Flash: Adobe Has iPhone Workaround
Adobe's Flash 10.1 Goes Mobile (Minus iPhone)
A Salute to Visionary CEOs

CSS1 defines two more types of selectors: Grouping and Contextual selectors.

Grouping selectors group two or more selectors into one by concatenating them, separated by commas. Here is an example:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"
 "http://www.w3.org/TR/REC-html40/strict.dtd">
<HTML>
<TITLE>Example HTML Document 
   Showcasing Basic CSS Selectors</TITLE>
<STYLE TYPE="text/css">
<!--
BODY {
  color: blue;
  background-color: cyan;
  font-family: Helvetica, Arial, sans-serif;
}

H1, H2, H3 {
  color: red;
  font-family: Garamond, Times, sans-serif;
}
-->
</STYLE>
<BODY>

<H1>Heading 1</H1>

<H2>Heading 2</H2>

<H3>Heading 3</H3>

<P>A paragraph. A paragraph. A paragraph. 
A paragraph. A paragraph. A paragraph. A paragraph. 
A paragraph. A paragraph. A paragraph. A paragraph. 
A paragraph. A paragraph.

In this example, the selector H1, H2, H3 matches either H1 elements or H2 elements or H3 elements.

You can group any selector in this way. Slightly modifying the page above, the H1, H2, H3.special selector matches H1 elements, H2 elements or H3 elements with a class of special, but not other H3 elements.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"
 "http://www.w3.org/TR/REC-html40/strict.dtd">
<HTML>
<TITLE>Example HTML Document Showcasing Basic CSS Selectors</TITLE>
<STYLE TYPE="text/css">
<!--
BODY {
  color: blue;
  background-color: cyan;
  font-family: Helvetica, Arial, sans-serif;
}

H1, H2, H3.special {
  color: red;
  font-family: Garamond, Times, sans-serif;
}
-->
</STYLE>
<BODY>

<H1>Heading 1</H1>

<H3>Heading 3</H3>

<P>A paragraph. A paragraph. A paragraph. A paragraph. A paragraph. A
paragraph. A paragraph. A paragraph. A paragraph. A paragraph. A
paragraph. A paragraph. A paragraph.

<H3 CLASS="special">Heading 3 Class Special</H3>

<P>A paragraph. A paragraph. A paragraph. A paragraph. A paragraph. A
paragraph. A paragraph. A paragraph. A paragraph. A paragraph. A
paragraph. A paragraph. A paragraph.

Front Page1234567

http://www.internet.com

Produced by Stephanos Piperoglou

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Reprints, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
Building a Banking Application Home Page with OOP · Mixing Scripting Languages · Review: phpFox, a Social Networking CMS with all the Bells and Whistles
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Enterprise 2.0: Social Networking in the Cloud · BroadSoft Marketplace Hastens Pace of Telephony Innovation · Review: HTC Hero for Sprint


All Rights Reserved. Legal Notices.

URL: http://www.webreference.com/html/tutorial6/5.html
Created: September 24, 1998
Revised: September 24, 1998