website construction - css basics€¦ · css basics frédérichaziza department of computer...

44
Website Construction CSS Basics Frédéric Haziza <[email protected]> Department of Computer Systems Uppsala University Summer 2009

Upload: others

Post on 21-Aug-2020

3 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Website ConstructionCSS Basics

Frédéric Haziza <[email protected]>

Department of Computer Systems

Uppsala University

Summer 2009

Page 2: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Outline

1 CSS syntax

2 CSS box model

3 CSS dimensions and units

4 CSS sprites

5 CSS global reset

3 WebConst’09 | Website Construction (CSS Basics)

Page 3: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

HTML describes documentsCSS displays documents

4 WebConst’09 | Website Construction (CSS Basics)

Page 4: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Cascading Style Sheet

multiple definitions cascade into one

5 WebConst’09 | Website Construction (CSS Basics)

Page 5: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Rule syntax

selector { property : value; }

HTML<h1> Header title </h1>

CSSh1 { color: green; }

6 WebConst’09 | Website Construction (CSS Basics)

Page 6: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Syntax – My prefered formatting

s e l e c t o r {p r o p e r t y : v a l u e ;p r o p e r t y : v a l u e ;

}

CSS

h1 {c o l o r : g r een ;font−s i z e : 20 pt ;

}

7 WebConst’09 | Website Construction (CSS Basics)

Page 7: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Syntax – Grouping

CSS

h1 , h2 , h3 , h4 , h5 {

c o l o r : g r een ;font−s i z e : 20 pt ;

}

8 WebConst’09 | Website Construction (CSS Basics)

Page 8: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Syntax

Comments: /* */

CSS

/∗ Rule f o r a l l h eade r s ∗/h1 , h2 , h3 , h4 , h5 {

c o l o r : g r een ;font−s i z e : 20 pt ;/∗ font−we ight : bo ld ; ∗/

}

9 WebConst’09 | Website Construction (CSS Basics)

Page 9: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Syntax – Identifier

I d e n t i f i e r : #id−name

HTML

<h1 i d =’ ’ news ’ ’> News heade r </h1>

CSS

#news {c o l o r : r ed ;font−v a r i a n t : sma l l−caps ;

}

10 WebConst’09 | Website Construction (CSS Basics)

Page 10: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Syntax – Identifier

CSS

/∗ Rule f o r a l l h eade r s ∗/h1 , h2 , h3 , h4 , h5 {

c o l o r : g r een ;font−s i z e : 20 pt ;

}

#news {c o l o r : r ed ;

}

11 WebConst’09 | Website Construction (CSS Basics)

Page 11: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Syntax – Identifier

C l a s s : s e l e c t o r . c l a s s−nameor . c l a s s−name

HTML

<h1 c l a s s =’ ’ important ’ ’> News heade r </h1>

CSS

h1 . impor tan t {font−v a r i a n t : sma l l−caps ;

}

12 WebConst’09 | Website Construction (CSS Basics)

Page 12: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Syntax – Class

HTML

<h1 c l a s s =’ ’ important ’ ’> News heade r </h1>

CSS

h1 , h2 , h3 , h4 , h5 {c o l o r : g r een ;font−s i z e : 20 pt ;

}

#news { c o l o r : r ed ; }

h1 . impor tan t { font−v a r i a n t : sma l l−caps ; }

13 WebConst’09 | Website Construction (CSS Basics)

Page 13: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Syntax – Class combination

HTML

<h1 i d =’ ’ news ’ ’ c l a s s =’ ’ impor tan t s p e c i a l ’ ’>News heade r

</h1><p c l a s s =’ ’ s p e c i a l ’ ’> b l a b l a </p><p c l a s s =’ ’ important ’ ’> b l a b l a </p>

CSS

h1 , h2 , h3 { c o l o r : g r een ; font−s i z e : 20 pt ; }

#news { c o l o r : r ed ; }

h1 . impor tan t { font−v a r i a n t : sma l l−caps ; }

. s p e c i a l { font−s t y l e : i t a l i c ; }

14 WebConst’09 | Website Construction (CSS Basics)

Page 14: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Syntax – Pseudo-class

HTML

<a h r e f =’ ’ h t tp : //www. goog l e . com ’ ’c l a s s =’ ’ e x t e r n a l ’ ’>

V i s i t Google</a>

CSS

a { tex t−d e c o r a t i o n : none ; c o l o r : b l u e ; }

a : hove r { t ex t−d e c o r a t i o n : u n d e r l i n e ;c o l o r : r ed ; }

a . e x t e r n a l : hove r { c o l o r : g r een ; }

:focus, :active, :link, :visited, :first-child, :lang15 WebConst’09 | Website Construction (CSS Basics)

Page 15: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Pseudo-classes for anchor links

a : l i n k { c o l o r : r ed ; } /∗ u n v i s i t e d l i n k ∗/a : v i s i t e d { c o l o r : g r een ; } /∗ v i s i t e d l i n k ∗/a : hove r { c o l o r : y e l l ow ; } /∗ mouse ove r l i n k ∗/a : a c t i v e { c o l o r : b l u e ; } /∗ s e l e c t e d l i n k ∗/

16 WebConst’09 | Website Construction (CSS Basics)

Page 16: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Syntax – Descendance

HTML

<h1><span>News</ span> header

</h1><p>

foo <span>bar</ span></p>

CSS

h1 { font−s i z e : 20 pt ; }

h1 span { background−c o l o r : y e l l ow ; }

17 WebConst’09 | Website Construction (CSS Basics)

Page 17: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Syntax – Descendance

<d i v i d="main"><u l>

< l i> <a h r e f="/"> Home </a> </ l i>< l i> <a h r e f=" b l a0 ">Item 1</a> </ l i>< l i c l a s s=" a c t i v e "> <a h r e f=" b l a1 ">Item 2</a> </ l i>< l i> <a h r e f=" b l a2 ">Item 3</a> </ l i>< l i> <a h r e f=" b l a3 ">Item 4</a> </ l i>

</ u l></ d i v><d i v c l a s s =’ ’ other ’ ’> <a h r e f =’ ’ foo ’ ’> bar </a> </ d i v>

CSS

#main u l { t ex t−a l i g n : l e f t ; l i s t −s t y l e : c i r c l e i n s i d e none ; }#main u l l i a { font−s i z e : 10 pt ; t ex t−d e c o r a t i o n : none ;

font−we ight : bo ld ; c o l o r : #F0E5CF ; }#main u l l i a : hove r { t ex t−d e c o r a t i o n : u n d e r l i n e ; }#main u l l i . a c t i v e a { c o l o r : r ed ; }#main u l l i . a c t i v e a : hove r { c o l o r : r ed ; } /∗ r e s e t ∗/

d i v . o t h e r a { tex t−d e c o r a t i o n : u n d e r l i n e ; }

18 WebConst’09 | Website Construction (CSS Basics)

Page 18: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Syntax – Descendance

<u l i d="main">< l i> <a h r e f="/"> Home </a> </ l i>< l i> <a h r e f=" b l a0 ">Item 1</a> </ l i>< l i c l a s s=" a c t i v e "> <a h r e f=" b l a1 ">Item 2</a> </ l i>< l i> <a h r e f=" b l a2 ">Item 3</a> </ l i>< l i> <a h r e f=" b l a3 ">Item 4</a> </ l i>

</ u l>

CSS

#main { tex t−a l i g n : l e f t ; l i s t −s t y l e : c i r c l e i n s i d e none ; }#main l i a { font−s i z e : 10 pt ; t ex t−d e c o r a t i o n : none ;

font−we ight : bo ld ; c o l o r : #F0E5CF ; }#main l i a : hove r { tex t−d e c o r a t i o n : u n d e r l i n e ; }#main l i . a c t i v e a { c o l o r : r ed ; }#main l i . a c t i v e a : hove r { c o l o r : r ed ; } /∗ r e s e t ∗/

u l#main { tex t−a l i g n : l e f t ; l i s t −s t y l e : c i r c l e i n s i d e none ; }u l#main l i a { font−s i z e : 10 pt ; t ex t−d e c o r a t i o n : none ;

font−we ight : bo ld ; c o l o r : #F0E5CF ; }u l#main l i a : hove r { t ex t−d e c o r a t i o n : u n d e r l i n e ; }u l#main l i . a c t i v e a { c o l o r : r ed ; }u l#main l i . a c t i v e a : hove r { c o l o r : r ed ; } /∗ r e s e t ∗/

19 WebConst’09 | Website Construction (CSS Basics)

Page 19: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Syntax – Mixture

HTML

<h1 c l a s s =’ ’ impor tan t s p e c i a l ’ ’><span c l a s s =’ ’ today ’ ’>News</ span> header

</h1><p c l a s s =’ ’ s p e c i a l ’ ’>

foo <span c l a s s =’ ’ h i g h l i g h t ’ ’>bar</ span></p><d i v i d =’ ’ f o o t e r ’ ’> . . . </ d i v>

CSS

h1 span { background−c o l o r : b l u e ; }

p . s p e c i a l span . h i g h l i g h t : hove r {background−c o l o r : y e l l ow ;

}

#f o o t e r { background−c o l o r : b l a c k ; c o l o r : wh i t e ; }

20 WebConst’09 | Website Construction (CSS Basics)

Page 20: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Syntax – Other selectors

Universal sector*

CSS

∗ { c o l o r : b l a c k ; }d i v . g r e e t i n g s ∗ { c o l o r : g r een ; }

Not good to use, heavy on the rendering engine

There are other selectors in CSS3,but they don’t have wide-spread use (yet).

21 WebConst’09 | Website Construction (CSS Basics)

Page 21: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal
Page 22: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal
Page 23: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal
Page 24: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Note on inheritance

Some rules apply because they come from the parent.

Equivalently:Some rules of an element descend to their children.

Example: the font rule.

25 WebConst’09 | Website Construction (CSS Basics)

Page 25: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

4 – Browser defaultsEvery browser has a default style for each HTML element

3 – External style sheet (in the head tag)<link rel="stylesheet" type="text/css" href="style. css" />

2 – Internal style (in the head tag)<style type="text/css">h1 { color : red ; } </style>

1 – Inline declaration (in the HTML markup)<h1 style="color:red ;">header </h1>

26 WebConst’09 | Website Construction (CSS Basics)

Page 26: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Outline

1 CSS syntax

2 CSS box model

3 CSS dimensions and units

4 CSS sprites

5 CSS global reset

27 WebConst’09 | Website Construction (CSS Basics)

Page 27: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Margin

BorderPadding

Content

28 WebConst’09 | Website Construction (CSS Basics)

Page 28: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Margin

BorderPadding

Content

width: 100px;height: 50px;

padding-top: 10px;padding-right: 10px;padding-bottom: 10px;padding-left: 10px;

border-color: blue;border-style: dotted;border-width: 10px;

margin-top: 10px;margin-right: 10px;margin-bottom: 10px;margin-left: 10px;

29 WebConst’09 | Website Construction (CSS Basics)

Page 29: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

margin-top: 10px;margin-right: 20px;margin-bottom: 30px;margin-left: 40px;

CSS shorthands

Clockwise

margin: 10px 20px 30px 40px;top right bottom left

margin: 10px 20px 40px;top right bottom

left

margin: 10px 20px;top right

bottom left

margin: 10px; all sides30 WebConst’09 | Website Construction (CSS Basics)

Page 30: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

border-style: dotted solid double dashed;top right bottom left

border-style: dotted solid dashed;top right bottom

left

border-style: solid dotted;top right

bottom left

border-style: dotted; all sides

border: 2px solid red;background: #00ff00 url(’smiley.gif’) no-repeat fixed center;

font: italic small-caps 900 12px arial;

31 WebConst’09 | Website Construction (CSS Basics)

Page 31: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

RememberCSS width = the width of the content, not the block

Total widthwidth + padding + border

Internet Explorer gets it wrong.It makes more sense, but it’s not the W3C standard.

Declare your doctype

<!DOCTYPE html PUBLIC "−//W3C//DTD XHTML 1 .0 S t r i c t //EN"" ht tp : //www. w3 . org /TR/ xhtml1 /DTD/xhtml1−s t r i c t . dtd ">

<html><head>

. . .

32 WebConst’09 | Website Construction (CSS Basics)

Page 32: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

No doctype⇒ quirk mode

Doctype⇒ standard mode

33 WebConst’09 | Website Construction (CSS Basics)

Page 33: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Outline

1 CSS syntax

2 CSS box model

3 CSS dimensions and units

4 CSS sprites

5 CSS global reset

34 WebConst’09 | Website Construction (CSS Basics)

Page 34: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

CSS measurements

35 WebConst’09 | Website Construction (CSS Basics)

Page 35: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Colors

The World Wide Web Consortium (W3C) has listed16 valid color names for HTML and CSS:

aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive,purple, red, silver, teal, white, and yellow

For other colors: specify their value.

36 WebConst’09 | Website Construction (CSS Basics)

Page 36: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Outline

1 CSS syntax

2 CSS box model

3 CSS dimensions and units

4 CSS sprites

5 CSS global reset

37 WebConst’09 | Website Construction (CSS Basics)

Page 37: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

CSS no sprites

<u l>< l i><a h r e f="#">l i n k</a></ l i>< l i><a h r e f="#">l i n k</a></ l i>< l i><a h r e f="#">l i n k</a></ l i>< l i><a h r e f="#">l i n k</a></ l i>< l i><a h r e f="#">l i n k</a></ l i>

</ u l>

u l l i a {background : u r l ( . . / img/ l i nk_break . png ) l e f t c e n t e r

no−r e p e a t ;padd ing : 5 px 2px 5px 36px ;

}u l l i a : hove r {

background−image : u r l ( . . / img/ l ink_make . png ) ;t ex t−d e c o r a t i o n : u n d e r l i n e ;

}

38 WebConst’09 | Website Construction (CSS Basics)

Page 38: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

CSS sprites

<u l>< l i><a h r e f="#">l i n k</a></ l i>< l i><a h r e f="#">l i n k</a></ l i>< l i><a h r e f="#">l i n k</a></ l i>< l i><a h r e f="#">l i n k</a></ l i>< l i><a h r e f="#">l i n k</a></ l i>

</ u l>

u l l i a {background : u r l ( . . / img/ l i n k _ s p r i t e . png ) 0 −32px no−

r e p e a t ;padd ing : 5 px 2px 5px 36px ;

}u l l i a : hove r {

background−p o s i t i o n : 0 0 ;t ex t−d e c o r a t i o n : u n d e r l i n e ;

}

39 WebConst’09 | Website Construction (CSS Basics)

Page 39: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

40 WebConst’09 | Website Construction (CSS Basics)

Page 40: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

41 WebConst’09 | Website Construction (CSS Basics)

Page 41: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

42 WebConst’09 | Website Construction (CSS Basics)

Page 42: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

Outline

1 CSS syntax

2 CSS box model

3 CSS dimensions and units

4 CSS sprites

5 CSS global reset

43 WebConst’09 | Website Construction (CSS Basics)

Page 43: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

CSS reset

Global Reset is needed to ensure the more or less identicalcross-browser presentation of your web-sites. By default differentbrowsers use different values for margin, padding or line-height.Global Reset makes sure all (or probably most) browsers rendersites identically.

Quick and dirty∗ { margin:0; padding:0; }

Much better withTripoli’s Eric Meyer’s Christian Montoya’s

Kyle Neath’s YUI’s Master stylesheet

44 WebConst’09 | Website Construction (CSS Basics)

Page 44: Website Construction - CSS Basics€¦ · CSS Basics FrédéricHaziza Department of Computer Systems Uppsala University Summer2009. SyntaxBox ModelUnitsSpritesGlobal

Syntax Box Model Units Sprites Global Reset

CSS Zengarden

They marked up the whole contentallowing CSS to target anything on the page.

The rest is just the imagination of the developers/designers.

To the CSS playground

45 WebConst’09 | Website Construction (CSS Basics)