Style sheet for example demonstrating adjacent sibling and child selectors : selector « Style Basics « HTML / CSS






Style sheet for example demonstrating adjacent sibling and child selectors

 

<?xml version="1.0" ?>
<!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" xml:lang="en">

  <head>
    <title>Using fewer classes</title>
<style type='text/css'>
body {
   color:#000000;
   background-color:#ffffff;
   font-size:12px;}

   p {font-family:arial, verdana, sans-serif;}
   div>p {border:1px solid #000000;}
   p+p+p {background-color:#d6d6d6;} 
</style>

  </head>

  <body>
      <p>Paragraph One: not inside a div element.</p>
      <div>
        <p>Paragraph Two: inside a div element</p>
        <p>Paragraph Three: inside a div element</p>
        <p>Paragraph Four: inside a div element</p>
        <p>Paragraph Five: inside a div element</p>
        <p>Paragraph Six: inside a div element</p>
      </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.First Child Pseudo-Selector
29.Before and After Pseudo Selectors
30.Selector Basics
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