Intro to CSS

CSS Syntax

  • <style>
          .class { property: value; } //This is a comment
          #id { property: value; } /* This is also a comment */
          .class, #id { property: value; }
    </style>