Examples of simple html designs with CSS selectors

Simple CSS Selector pattern of:
element {rules}

Next CSS Selector pattern of:
element, element, element {rules}
Rules apply to all elments selected
Note: The relationships do not need to be direct desendents!

Next CSS Selector pattern of:
element1 element2 element3 {rules}
Rules only apply to element1 parent of element2 parent of element3

Return to WebDesign Main Section