Tags <header> <nav> <main> <article> <section> <footer> any name can be used for a class or ID <div> (division) tag.
COMMON float: width: max-width: height: background: padding: (Padding pushes in) margin: (Margin marches out) boarder: (this applies to all four sides) border-top: 5px solid red; border-left: 24px solid blue; border-right: 10px solid blue; border-bottom: 10px solid blue; max-width: max-height: display: pseudo-classes: opacity: flex:
UNCOMMON Rounded Corners (not approved by World Wide Web Consortium yet, but approved by browsers. So we have to use different code for the browsers) Rounded Corners - Approach 1: All corners the same border-radius: 10px; /* future proofing */ moz-border-radius: 10px; webkit-border-radius: 10px; Rounded Corners - Approach 2: Corners different border-radius: 10px 20px 30px 0; /* future proofing */ moz-border-radius: 10px 20px 30px 0; webkit-border-radius: 10px 20px 30px 0; opacity: