View on GitHub

reading-notes

My Reading Notes for Code Fellows Class

Design web pages with CSS

What is CSS

CSS (Cascade Style Sheets) is the style and furniture of a house in comparison with HTML being the structure of it.

Browser has defaults fro html.

Document examples:

Presenting:

CSS affects:

CSS Syntax:

There’s so many codes, therfore broken down by modules.

Everythign is run by CSS Working Group in W3C.

Browser compatibility is important.

How to Add CSS

Three ways to add CSS:

Inline takes priority

CSS Color Property

body { color: red; }

h1 { color: #00ff00; }

p.ex { color: rgb(0,0,255); }