Selectors choose the element to apply formatting to : Selector priority « Style Basics « HTML / CSS






Selectors choose the element to apply formatting to

 


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
     <head>
      <meta http-equiv="content-type" content="text/xhtml; charset=windows-1252" />
      <meta http-equiv="content-language" content="en-us" />
        <title>Selectors and Grouping</title>
        <style type="text/css" media="all">

            p {
                font-family: Arial;
                font-size: 14pt;
            }

            h1 {
                color: black;
                border: 5px solid black;
            }
            h2 {
                color: orange;
                border: 4px solid orange;
            }
            h3 {
                color: blue;
                border: 3px solid blue;
            }

            h1, h2, h3 {
                letter-spacing: 5px;
                padding: 10px;
                border: 3px solid red;
            }
        </style>
     </head>
     <body>
        <h1>
            Heading 1
        </h1>
        <h2>
            Heading 2
        </h2>
        <h3>
            Heading 3
        </h3>
        <p>
            This is a test. 
        </p>
    </body>
</html>

 








Related examples in the same category

1.Six selector groups listed from highest to lowest priority:
2.Specificity means that more specific selectors are given priority over less specific selectors
3.Style is overwritable
4.Cascade Order
5.select elements by type, class, and/or ID
6.Specificity, !important
7.!important has higher priority
8.Latter one overwrite the former one
9.the id selector is more specific than the element selector
10.Some properties in CSS are inherited to children elements