Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 641 Bytes

CSS-Notes.md

File metadata and controls

39 lines (32 loc) · 641 Bytes

CSS Notes

Words to Know

  • CSS: Cascading style sheet
  • RGB: Red, Green, Blue
  • HSL: Hue, saturation, light
  • Hex Codes: #000 or #00FF00

Anatomy of CSS

p {
color: black;
background-color:green;

}

  • "Color" is the property
  • "Green" is the value
  • "Declaration" is the property value; the pair, green and color.
  • "{}" Curly brackets, braces

Selector Types

  • Element
  • Universal
  • Class
  • ID

Notes

  • Can have a parent, child, sibling code
    • header > nav > ul > li