lesson 03

Post on 19-Jan-2015

62 Views

Category:

Documents

0 Downloads

Preview:

Click to see full reader

DESCRIPTION

 

TRANSCRIPT

Front-End Web Development

Lesson 3Advanced CSS

Agenda● Review (15 minutes)● HTML Template (10 minutes)● Box Model (50 minutes)● Nested Selectors (20 minutes)● Getting Started (10 minutes)● Lab Time (60 minutes)

Review

Wendy G. Bite● index● resume

Review

Homework (sharing files)● Schoology● Shared Class Web Server● GitHub

Box Model

Every element on a web page is a box.

What is an element?

Box Model

Box Model

Width = width +

padding-left + padding-right +

border-left + border-right

Height = height +

padding-top + padding-bottom +

border-top + border-bottom

Nested Selectors

Not needed to complete Assignment

Makes more sense once the following is introduced in the next lesson:

<div> tagsIDs and classes

top related