learning-journal
Kyle's Learning Journal
Project maintained by AtkinsonKyle
Hosted on GitHub Pages — Theme by mattgraham
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