class style overwrites the wildcard style : Style overwrite « Style Basics « HTML / CSS

HTML / CSS » Style Basics » Style overwrite 
class style overwrites the wildcard style
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
    <head>
        <title> Property Inheritance </title>
        <style type='text/css'>
      {
          font-family: sans-serif;
      }
      div {
          font-family: "Times New Roman";
      }
        </style>
    </head>
  <body>
      This font is sans-serif.
      <div>
          This font is Times New Roman.
      </div>
  </body>
</html>

 
Related examples in the same category
1.Style cascade
2.Style cascade 1
3.Id style overwrites the tag name style
4.CLASS overrules ELEMENT
5.ID overrules CLASS
6.inline styles overrule everything except !important
7.!important overrides all, including inline styles
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.