1 07-the box-model

36
The Box Model Colin Gourlay & Kevin Vanderbeken

Upload: apnwebdev

Post on 18-Jan-2015

448 views

Category:

Technology


1 download

DESCRIPTION

 

TRANSCRIPT

Page 1: 1 07-the box-model

The Box Model

Colin Gourlay & Kevin Vanderbeken

Page 2: 1 07-the box-model

Today:

The Box Model

Container Elements

Other Text Features

Page 3: 1 07-the box-model

introduction

Page 4: 1 07-the box-model

an aside on tables...

Page 5: 1 07-the box-model

the CSS layout model

a.k.a.

the box model

Page 6: 1 07-the box-model
Page 7: 1 07-the box-model

margin

Page 8: 1 07-the box-model

outline

Page 9: 1 07-the box-model

border

Page 10: 1 07-the box-model

padding

Page 11: 1 07-the box-model

content

HEGHT

WIDTH

Page 12: 1 07-the box-model

more detail + code examples

Page 13: 1 07-the box-model

margin

Page 14: 1 07-the box-model

margin-top: 3px;margin-right: 5px;margin-bottom: 7px;margin-left: 2px;

...or...

margin: 3px 5px 7px 2px;

Page 15: 1 07-the box-model

outline

Page 16: 1 07-the box-model

outline-color: #999999;outline-style: dotted;outline-width: 5px;

...or...

outline: #999999 dotted 5px;

nonedotteddashedsoliddoublegrooveridgeinsetoutset

Page 17: 1 07-the box-model

width & height

Page 18: 1 07-the box-model

width: 200px;height: 120px;

Page 19: 1 07-the box-model

border

Page 20: 1 07-the box-model

border-color: #00FF00;border-style: dotted;border-width: 5px;

...or...

border: 5px solid #00FF00;

nonedotteddashedsoliddoublegrooveridgeinsetoutset

...but wait, there’s more!...

Page 21: 1 07-the box-model

border-top-width: 2px;border-right-width: 5px;border-bottom-width: 2px;border-left-width: 5px;

...and...

border-top: 2px solid #00FF00;

Page 22: 1 07-the box-model

padding

Page 23: 1 07-the box-model

padding-top: 3px;padding-right: 5px;padding-bottom: 7px;padding-left: 2px;

...or...

padding: 3px 5px 7px 2px;

Page 24: 1 07-the box-model

recap

Page 25: 1 07-the box-model

margin

Page 26: 1 07-the box-model

outline

Page 27: 1 07-the box-model

border

Page 28: 1 07-the box-model

padding

Page 29: 1 07-the box-model

content

HEGHT

WIDTH

Page 30: 1 07-the box-model

text featuresworth mentioning

Page 31: 1 07-the box-model

line height

Page 32: 1 07-the box-model

line-height: 24px;

Page 33: 1 07-the box-model

text alignment

Page 34: 1 07-the box-model

text-align: left;text-align: right;text-align: center;text-align: justify;

Page 35: 1 07-the box-model

next week...

Page 36: 1 07-the box-model

More on The Box ModelTM

Different boxes: block & inline

Box interaction: floats & positioning