Publishers of technology books, eBooks, and videos for creative people

Home > Articles > Web Design & Development > CSS

This chapter is from the book

red-star.jpgWorking with Pseudo-Classes

Many HTML elements have special states or uses associated with them that can be styled independently. One prime example of this is the link tag, <a>, which has link (its normal state), a visited state (when the visitor has already been to the page represented by the link), hover (when the visitor has the mouse over the link), and active (when the visitor clicks the link). All four of these states can be styled separately.

A pseudo-class is a predefined state or use of an element that can be styled independently of the default state of the element red-a.jpg.

  • Links (Table 4.3)—Pseudo-classes are used to style not only the initial appearance of the anchor tag, but also how it appears after it has been visited, while the visitor hovers the mouse over it, and when visitors are clicking it.

    Table 4.3. Link and Dynamic Pseudo-Classes

    Format

    Selector Name

    Elements Are Styled If...

    ie.jpg

    fi.jpg

    sa.jpg

    go.jpg

    op.jpg

    :link

    Link

    the value of href is not in history

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    :visited

    Visited link

    the value of href is in history

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    :target

    Targeted link

    a targeted anchor link

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    :active

    Active

    the element is clicked

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    :hover

    Hover

    the pointer is over the element

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    :focus

    Focus

    the element has screen focus

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

  • Dynamic (Table 4.3)—Pseudo-classes can be applied to any element to define how it is styled when the user hovers over it, clicks it, or selects it.
  • Structural (Table 4.4)—Pseudo-classes are similar to the sibling combinatory selectors but allow you to specifically style elements based on an exact or computed numeric position.

    Table 4.4. Structural/Other Pseudo-Classes

    Format

    Selector Name

    Elements Are Styled If...

    ie.jpg

    fi.jpg

    sa.jpg

    go.jpg

    op.jpg

    :root

    Root

    is the top level element in a document

    bullet.jpg9

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    :empty

    Empty

    has no children

    bullet.jpg9

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    :only-child

    Only child

    has no siblings

    bullet.jpg9

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    :only-of-type

    Only of type

    has its unique selector among its siblings

    bullet.jpg9

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    :first-child

    First-child

    is the first child of another element

    bullet.jpg9

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    :nth-of-type(n)

    Nth of type

    is the nth element with that selector

    bullet.jpg9

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    :nth-last-of-type(n)

    Nth from last of type

    is the nth element with that selector from the last element with that selector

    bullet.jpg9

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    :last-child

    Last child

    is the last child in the parent element

    bullet.jpg9

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    :first-of-type

    First of type

    is the first of its selector type in the parent element

    bullet.jpg9

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    :last-of-type

    Last of type

    is the last of its selector type in the parent element

    bullet.jpg9

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    :lang()

    Language

    has a specified language code defined

    bullet.jpg8

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

    :not(s)

    Negation

    is not using specific selectors

    bullet.jpg9

    bullet.jpg

    bullet.jpg

    bullet.jpg

    bullet.jpg

  • Other (Table 4.4)—Pseudo-classes are available to style elements based on language or based on what tag they are not.
    0412a.jpg

    Click to view larger image

    red-a.jpg General syntax of a pseudo-class.

Styling links

Although a link is a tag, its individual states are not. To set properties for these states, you must use the pseudo-classes associated with each state that a link can have (in this order):

  • :link lets you declare the appearance of hypertext links that have not yet been selected.
  • :visited lets you set the appearance of links that the visitor selected previously—that is, the URL of the href attribute in the tag that is part of the browser’s history.
  • :hover lets you set the appearance of the element when the visitor’s pointer is over it.
  • :active sets the style of the element when it is clicked or selected by the visitor.

For ideas on which styles to use with links, see the sidebar “Picking Link Styles.”

To set contrasting link appearances

  1. Style the anchor tag.
    a {...}

    Although not required, it’s best to first define the general anchor style (Code 4.6). This differs from setting the :link pseudo-class in that these styles are applied to all the link pseudo-classes. So, you want to declare any styles that will remain constant or are changed in only one of the states.

    0413b.jpg

    Click to view larger image

    red-b.jpg The results of Code 4.6 show the links styled for each state to help the user understand what’s going on.

Code 4.6. The link styles are set for the default and then all four link states, creating color differentiation red-b.jpg. Notice also that I’ve turned off underlining with text decoration but added an underline effect using border bottom.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Alice&#8217;s Adventures in Wonderland</title>
<style type="text/css" media="all">
   a {
      text-decoration: none;
      font-size: 2em; }
   a:link {
      color: darkred;
      border-bottom: 1px solid red; }
   a:visited {
      color: darkred;
      border-bottom: 1px dashed red; }
   a:hover {
      color: red;
      border-bottom: 1px solid pink; }
   a:active {
      color: pink;
      border-bottom: 1px solid pink; }
</style>
</head>
<body>
<nav>
<h2>TOC:</h2>
<ol>
<li><a href="AAIWL-ch01.html">Down the Rabbit-hole</a></li>
<li><a href="AAIWL-ch02.html">The Pool of Tears</a></li>
<li><a href="AAIWL-ch03.html">A Caucus-race and a Long Tale</a></li>
<li><a href="AAIWL-ch04.html">The Rabbit sends in a Little Bill</a></li>
<li><a href="AAIWL-ch05.html">Advice from a Caterpillar</a></li>
<li><a href="AAIWL-ch06.html">Pig and Pepper</a></li>
<li><a href="AAIWL-ch07.html">A Mad Tea-party</a></li>
<li><a href="AAIWL-ch08.html">The Queen's Croquet-ground</a></li>
<li><a href="AAIWL-ch09.html">The Mock Turtle's Story</a></li>
<li><a href="AAIWL-ch010.html">The Lobster Quadrille</a></li>
<li><a href="AAIWL-ch011.html">Who Stole the Tarts?</a></li>
<li><a href="AAIWL-ch012.html">Alice&#8217;s Evidence</a></li>
</ol>
</nav>
</body>
</html>
  1. Style the default link state. Type the selector (anchor tag, class, or ID) of the element you want to style, followed by a colon (:), and then link.
    a:link {...}

    You can override styles set for the anchor tag, but this rule should always come before the :visited pseudo-class.

  2. Style the visited link style. Type the selector (anchor, class, or ID) of the element you want to style, followed by a colon (:), and then visited.
    a:visited {...}
  3. Style the hover link state. Type the selector (anchor, class, or ID) of the element you want to style, followed by a colon (:), and then hover.
    a:hover {...}
  4. Style the active link state. Type the selector (anchor, class, or ID) of the element you want to style, followed by a colon (:), and then active.
    a:active {...}
  5. Style is applied to the link state as needed.
    <a href="AAIWL-ch01.html">...</a>

    All links on the page will obey the rules you lay down here when styling the various link states. You can—and should—use selective styling to differentiate link types.

    In this example, the pseudo-classes are applied directly to the anchor tag, but any class or ID could have been used as long as it was then applied to an anchor tag.

Styling for interaction

Once loaded, Web pages are far from static. Users will start interacting with the page right away, moving their pointers across the screen and clicking hither and yon. The dynamic pseudo-classes allow you to style elements as the user interacts with them, providing visual feedback:

  • :hover—Same as for links, but sets the appearance of the element when the pointer is hovering over it.
  • :focus—Applied to elements that can receive focus, such as form text fields.
  • :active—Same as for links, but sets the style of the element when it is clicked or selected.

To define a dynamic pseudo-class

  1. Style the default element.
    input {...}

    Although optional, it’s generally a good idea to set the default, non-dynamic style for the elements receiving dynamic styles (Code 4.7).

  2. Style the hover state of the element. Type the selector (HTML, class, or ID), a colon (:), and then hover.
    input:hover {...}

    As soon as the pointer enters the element’s box (see Chapter 10 for details about the box model), the style change will occur.

    red-c.jpg The results of Code 4.7. This shows a simple form field in the four dynamic states. Providing this visual feedback can help users know which form field is ready for use or that they have clicked a button.

Code 4.7. The input elements, with a special style for the button type, are set to change style when the user interacts with them by hovering, selecting (focus), or clicking (active) red-c.jpg.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Alice&#8217;s Adventures in Wonderland</title>
<style type="text/css" media="all">
   input {
      border: 3px solid gray;
      background-color: silver;
      color: gray;
      padding: 0 5px;
      font-size: 1.5em; }
   input[type="button"] {
      border-radius: 1em;
      color: silver;
      background-color: gray; }
   input:hover {
      background-color: white;
      border-color: pink;
      color: silver; }
   input:focus {
      border-color: red;
      background-color: white;
      color: black;
      outline: none; }
   input:active {
      color: red;
      border-color: pink;
      background-color: silver; }
</style>
</head>
<body>
<footer>
   <label>Mailing List:</label>
   <input type="text" value="email" placeholder="enter your eMail">
   <input type="button" class="active" value="submit">
</footer>
</body>
</html>
  1. Style the focus state of the element. Type the selector (HTML, class, or ID), a colon (:), and then focus.
    input:focus {...}

    As soon as the element receives focus (is clicked or tabbed to), the style change occurs and then reverts to the hover or default style when the element loses focus (called blur).

  2. Style the active state of the element. Type the selector (HTML, class, or ID), a colon (:), and then active.
    input:active {...}

    As soon as the user clicks within the element’s box (explained in Chapter 10), the style change will occur and then revert to either the hover or default style when released.

  3. The styles are applied to the elements’ states as necessary in reaction to the user.
    <input type="button" value="Submit">

    All the tags using the specific selector will have their states styled.

red-star.jpgStyling specific children with pseudo-classes

Designers often want to apply a style to an element that is the first element to appear within another element, such as a parent’s first child.

The first-child pseudo-element has been available since CSS2; however, CSS3 offers an assortment of new structural pseudo-elements for styling an element’s child element exactly (Table 4.4):

  • :first-child—Sets the appearance of the first instance of a selector type if it is the first child of its parent.
  • :first-of-type—Sets the appearance of an element the first time its selector type appears within the parent.
  • :nth-child(#)—Sets the appearance of the specific occurrence of the specified child element. For example, the third child element of a paragraph would be p:nth-child(3).
  • :nth-of-type(#)—Sets the appearance of the specific occurrence of a selector type within the parent. For example, the seventh paragraph would be p:nth-of-type(7).
  • :nth-last-of-type(#)—Sets the appearance of the specific occurrence of a selector type within the parent, but from the bottom. For example, the third paragraph from the bottom would be p:nth-last-of-type(3).
  • :last-child—Sets the appearance of the element of the indicated selector type if it is the last child of the parent.
  • :last-of-type—Sets the appearance of the last instance of a particular selector type within its parent.

To style the children of an element

  1. Style the children based on their positions in the parent. Type the selector (HTML, class, or ID) of the element you want to style, a colon (:), and one of the structural pseudo-elements from Table 4.4 (Code 4.8).
    li:first-child {...}
    li:first-of-type {...}
    li:nth-of-type(3) {...}
    li:nth-last-of-type(2) {...}
    li:last-child {...}
    li:last-of-type {...}
    0415d.jpg

    Click to view larger image

    red-d.jpg The results of Code 4.8 show the items in the list styled separately. In this case, the first child and first of type are the same element as the last element and last of type.

  2. Elements will be styled if they match the pattern.
    <li>...</li>

    Set up your HTML with the selectors from Step 1 in mind.

Code 4.8. The list has styles set based on the location within the list red-d.jpg.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Alice&#8217;s Adventures in Wonderland</title>
<style type="text/css" media="all">
   li {
      font-size: 1.5em;
      margin: .25em; }
   li:first-child { color: red; }
   li:first-of-type { border-bottom: 1px solid orange; }
   li:nth-child(2) { color: yellow; }
   li:nth-of-type(6) { color: green; }
   li:nth-last-of-type(2) { color: blue; }
   li:last-of-type { border-bottom: 1px solid indigo; }
   li:last-child { color: violet; }
</style>
</head>
<body>
<nav>
<ol>
   <li>Down the Rabbit-hole</li>
   <li>The Pool of Tears</li>
   <li>A Caucus-race and a Long Tale</li>
   <li>The Rabbit sends in a Little Bill</li>
   <li>Advice from a Caterpillar</li>
   <li>Pig and Pepper</li>
   <li>The Queen's Croquet-ground</li>
   <li>The Mock Turtle's Story</li>
   <li>The Lobster Quadrille</li>
   <li>Who Stole the Tarts?</li>
   <li>Alice&#8217;s Evidence</li>
</ol>
</nav>
</body>
</html>

Styling for a particular language

The World Wide Web is just that—all around the world—which means that anyone, anywhere can see your pages. It also means that Web pages are created in many languages.

The :lang() pseudo-class lets you specify styles that depend on the language specified by the language property.

To set a style for a specific language

  1. Style an element based on its language code. Type the selector (HTML, class, or ID) of the element you want to style, a colon (:), lang, and enter the letter code for the language you are defining within parentheses (Code 4.9).
    p:lang(fr) {...}
  2. The element is styled if it has a matching language code. Set up your tag in the HTML with the language attributes as necessary.
    <p lang="fr">...</p>

    If the indicated selector has its language attribute equal to the same value that you indicated in parentheses in Step 1, the style is applied.

    You can use any string as the language letter code, as long as it matches the value in the HTML. However, the W3C recommends using the codes from RFC 3066 or its successor. For more on language tags, visit www.w3.org/International/articles/language-tags.

Code 4.9. Styles are set to turn paragraphs red if they are in French (fr) red-e.jpg.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Alice&#8217;s Adventures in Wonderland</title>
<style type="text/css" media="all">
   q:lang(fr) {
      quotes: '«''»';
      color: red; }
</style>
</head>
<body>
<article class="chaptertext">
<p>Alice was beginning to get very tired of sitting by her sister on the bank, and of having
→ nothing to do: once or twice she had peeped into the book her sister was reading, but it had no
→ pictures or conversations in it, <q>and what is the use of a book,</q> thought Alice, <q>without
→ pictures or conversations?</q></p>
<p class="translation" lang="fr">Alice commençait à être très fatigué d'être assis par sa sœur sur
→ la rive, et de n'avoir rien à faire: une fois ou deux, elle avait regarda dans le livre de sa sœur
→ lisait, mais il n'avait pas d'images ni dialogues en elle, <q>et ce qui est l'utilisation d'un
→ livre,</q> pensait Alice, <q>sans images ni dialogues?</q></p>
</article>
</body>
</html>
0416e.jpg

Click to view larger image

red-e.jpg The results of Code 4.9 show the paragraph in French rendered in red (with my apologies to French speakers).

red-star.jpgNot styling an element

So far you’ve looked at ways to style a tag if it is something. The negation selector, :not, allows you to not style something for a particular selector.

To not set a style for a particular element

  1. Style elements to exclude certain selectors. Type the selector (HTML, class, or ID) of the element you want to style, a colon (:), not, and enter the selectors you want excluded from this rule in parentheses (Code 4.10).
    p:not(.dialog) {...}
  2. The element is not styled if it contains the indicated selector.
    <p class='dialog'>...</p> <p>...</p>

    The styles are applied to elements that match the initial selector but not the selector in parentheses.

Code 4.10. When the element is a paragraph that does not use the dialog class, it will be displayed in red and italics red-f.jpg.

<! DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Alice&#8217;s Adventures in Wonderland</title>
<style type="text/css" media="all">
   q:lang(fr) {
      quotes: '«''»'; }
   p:not(.translation) {
      color: red; }
</style>
</head>
<body>
<article class="chaptertext">
<p>Alice was beginning to get very tired of sitting by her sister on the bank, and of
→ having nothing to do: once or twice she had peeped into the book her sister was reading,
→ but it had no pictures or conversations in it, <q>and what is the use of a book,</q>
→ thought Alice, <q>without pictures or conversations?</q></p>
<p class="translation" lang="fr">Alice commençait à être très fatigué d'être assis par sa sœur
→ sur la rive, et de n'avoir rien à faire: une fois ou deux, elle avait regarda dans le livre de sa
→ sœur lisait, mais il n'avait pas d'images ni dialogues en elle, <q>et ce qui est l'utilisation d'un
→ livre,</q> pensait Alice, <q>sans images ni dialogues?</q></p>
</article>
</body>
</html>
0417f.jpg

Click to view larger image

Image The results of Code 4.10. This shows that the paragraph that does use the dialog class does not receive the style.

Peachpit Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from Peachpit and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about Peachpit products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites; develop new products and services; conduct educational research; and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email ask@peachpit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by Adobe Press. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.peachpit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020