Top Banner
The Box Model Colin Gourlay & Kevin Vanderbeken
36
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
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: #00FF00 solid 5px;

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: #00FF00 solid 2px;

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