View on GitHub

reading-notes

Code 102

Design web pages with CSS

Definitions

CSS
Stands for Cascading Style Sheets, it's what styles web content
RGB
Stands for Red, Green, and Blue. It's used in CSS by add certain ammouts of the 3 colors to make a new color.
HSL
Stands for Hue, Saturation, and Lightness. It's a different way to specify colors with indvidual values
Hex codes
Represent RGB in hexadecimal code.
Layout
in relation to CSS layout controls where elements are on a page.
Rule
When apply rules to elements either the last rule will override the rules before. And a more specific rule will over ride a generic one.
Selector
when applying CSS to an HTML document you can apply rules by using a selector examples might be using a paragraph tag, or a header tag
Property & value
in refference to Border, Margin, & Padding?
Curly braces
contain the decloration

<===Back