Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets...

95
Cascading Style Sheets (CSS) CSI 3140 WWW Structures, Techniques and Standards

Transcript of Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets...

Page 1: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Cascading Style Sheets (CSS)

CSI 3140WWW Structures, Techniques and Standards

Page 2: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Motivation

wHTML markup can be used to representn Semantics: h1 means that an element is a top-level

headingn Presentation: h1 elements look a certain way

wIt’s advisable to separate semantics from presentation because:

n It’s easier to present documents on multiple platforms(browser, cell phone, spoken, …)

n It’s easier to generate documents with consistent lookn Semantic and presentation changes can be made

independently of one another (division of labor)n User control of presentation is facilitated

Page 3: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Style Sheet Languages

wCascading Style Sheets (CSS)n Applies to (X)HTML as well as XML documents

in generaln Focus of this chapter

wExtensible Stylesheet Language (XSL)n Often used to transform one XML document to

another form, but can also add stylen XSL Transformations covered in later chapter

Page 4: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Introduction

wA styled HTML document

produced by the style sheet style1.css:

Page 5: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Introduction

link element associates style sheet with doc.

Page 6: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Introduction

type attribute specifies style language used

Page 7: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Introduction

href attribute provides style sheet URL

Page 8: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Introduction

title attribute provides style sheet name

Page 9: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Introduction

Alternative, user selectable style sheetscan be specified

Page 10: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Introduction

Page 11: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Introduction

wA styled HTML document

produced by the style sheet style2.css:

Page 12: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Introduction

Note that alternate, user selectable style is not widely supported: firefox 3 and IE 8 do, but IE 6, IE 7 and Chrome don’t.

Page 13: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Introduction

wSingle document can be displayed on multiple media platforms by tailoring style sheets:

This document will be printed differently than it is displayed.

Page 14: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Syntax

wParts of a style rule (or statement)

Page 15: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Syntax:Selector Strings

wSingle element type:

wMultiple element types:

wAll element types:

wSpecific elements by id:

Page 16: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Syntax:Selector Strings

Page 17: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Syntax:Selector Strings

wElements belonging to a style class:

n Referencing a style class in HTML:

wElements of a certain type and class:

class selector: begins with a period .

Page 18: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Syntax:Selector Strings

wElements belonging to a style class:

n Referencing a style class in HTML:

wElements of a certain type and class:this span belongs to three style classes

Page 19: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Syntax:Selector Strings

wElements belonging to a style class:

n Referencing a style class in HTML:

wElements of a certain type and class:

this rule applies only to span’s belonging to class special

Page 20: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Syntax:Selector Strings

wSource anchor elements:

wElement types that are descendents:pseudo-classes

Page 21: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Syntax:Selector Strings

wSource anchor elements:

wElement types that are descendants:

rule applies to li element that is

Page 22: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Syntax:Selector Strings

wSource anchor elements:

wElement types that are descendants:

rule applies to li element that ispart of the content of an ol element

Page 23: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Syntax:Selector Strings

wSource anchor elements:

wElement types that are descendants:

rule applies to li element that ispart of the content of an ol elementthat is part of the content of a ul element

Page 24: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Syntax

wStyle rules covered thus far follow ruleset syntaxwAt-rule is a second type of rule

n Reads style rules from specified URLn Must appear at beginning of style sheet

URL relative to style sheet URL

Page 25: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Style Sheets and HTML

wStyle sheets referenced by link HTML element are called external style sheetswStyle sheets can be embedded directly in HTML document using style element

wMost HTML elements have style attribute (value is list of style declarations)

Page 26: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Style Sheets and HTML

wRules of thumb:n Use external style sheets to define site-wide stylen Prefer style sheets (either external or embedded)

to style attributesn XML special characters

l Must use references in embedded style sheets and style attribute

l Must not use references in external style sheets

Page 27: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Rule Cascade

wWhat if more than one style declaration applies to a property of an element?

wThe CSS rule cascade determines which style rule’s declaration applies

Page 28: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Rule Cascade

To find the value for an element/property combination, user agents must apply the following sorting order:

1- Find all declarations that apply to the element and property in question, for the target media type. Declarations apply if the associated selector matches the element in question.

Page 29: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Rule Cascade

2- The primary sort of the declarations is by weight and origin: for normal declarations, author style sheets override user style sheets which override the default style sheet. For "!important" declarations, user style sheets override author style sheets which override the default style sheet. "!important" declaration override normal declarations. An imported style sheet has the same origin as the style sheet that imported it.

Five origin/weight levels:1. user/important2. author/important3. author/normal4. user/normal5. user agent/normal

Page 30: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Rule Cascade

3- The secondary sort is by specificity of selector: more specific selectors will override more general ones. Pseudo-elements and pseudo-classes are counted as normal elements and classes, respectively.

Specificity:1. style attribute2. rule with selector:

1. ID2. class/pseudo-class3. descendant/element type4. universal

3. HTML attribute

Page 31: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Rule Cascade

4- Finally, sort by order specified: if two rules have the same weight, origin and specificity, the latter specified wins. Rules in imported style sheets are considered to be before any rules in the style sheet itself.

Conceptually, create onelong style sheet. Laterstyle rules have higherpriority than earlier rules.

Page 32: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Inheritance

wWhat if no style declaration applies to a property of an element?wGenerally, the property value is inherited from the nearest ancestor element that has a value for the propertywIf no ancestor has a value (or the property does not inherit) then CSS defines an initial value that is used

Page 33: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Inheritance

Page 34: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Inheritance

wProperty values:n Specified: value contained in declaration

l Absolute: value can be determined without reference to context (e.g., 2cm)

l Relative: value depends on context (e.g., larger)n Computed: absolute representation of relative

value (e.g., larger might be 1.2 x parent font size)

n Actual: value actually used by browser (e.g., computed value might be rounded)

Page 35: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Inheritance

wMost properties inherit computed valuen Exception discussed later: line-height

wA little thought can usually tell you whether a property inherits or not

n Example: height does not inherit

Page 36: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Font Properties

Glyph (visual representation)

character cell(content area)

wA font is a mapping from code points to glyphs

Page 37: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Font Properties

wA font is a mapping from code points to glyphs

glyphs do not necessary stay inside cells!

Page 38: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Font Properties

wA font family is a collection of related fonts (typically differ in size, weight, etc.)

wfont-family property can accept a list of families, including generic font families

first choice font

Page 39: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Font Properties

wA font family is a collection of related fonts (typically differ in size, weight, etc.)

wfont-family property can accept a list of families, including generic font families

second choice font

Page 40: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Font Properties

wA font family is a collection of related fonts (typically differ in size, weight, etc.)

wfont-family property can accept a list of families, including generic font families

generic

Page 41: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Font Properties

genericfonts aresystem-specific

Page 42: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Font Properties

wNote that most generic font can be easily set on Firefox and Chrome, but such option doesn’t seem to be available on IE 7 and 8. IE will still default to something although maybe not what you had hoped for!

Page 43: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Font Properties

wMany properties, such as font-size, have a value that is a CSS lengthwAll CSS length values except 0 need units

Page 44: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Font Properties

Computed valueof font-sizeproperty

Page 45: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Font Properties

wReference font defines em and ex unitsn Normally, reference font is the font of the

element being styledn Exception: Using em/ex to specify value for font-size

parent element’s font isreference font

Page 46: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Font Properties

wOther ways to specify value for font-size:

n Percentage (of parent font-size)

n Absolute size keyword: xx-small, x-small, small, medium (initial value), large, x-large, xx-largel User agent specific; should differ by ~ 20%

n Relative size keyword: smaller, largerl Relative to parent element’s font

Page 47: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Font Properties

Page 48: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Font Properties

wText is rendered using line boxes

wHeight of line box given by line-heightn Initial value: normal (i.e., cell height; relationship with

em height is font-specific)n Other values (following are equivalent):

Page 49: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Font Properties

wWhen line-height is greater than cell height:

wInheritance of line-height:n Specified value if normal or unit-less numbern Computed value otherwise

Page 50: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Font Properties

wfont shortcut property:

Page 51: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Font Properties

wfont shortcut property:

Initial values used if no value specified in fontproperty list (that is, potentially reset)

Page 52: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Font Properties

wfont shortcut property:

specifying line-height (here, twice cell height)

any order size and family required,order-dependent

Page 53: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Text Formatting

Page 54: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Text Color

wFont color specified by color propertywTwo primary ways of specifying colors:

n Color name: black, gray, silver, white, red, lime, blue, yellow, aqua, fuchsia, maroon, green, navy, olive, teal, purple, full list athttp://www.w3.org/TR/SVG11/types.html#ColorKeywords

n red/green/blue (RGB) values

Page 55: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Text Color

Page 56: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Text Color

Page 57: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Box Model

wEvery rendered element occupies a box:

(or inner edge)

(or outer edge)

Page 58: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Box Model

Page 59: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Box Model

Page 60: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Box Model

Page 61: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Box Model

Page 62: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Box Model

Page 63: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Box Model

Page 64: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Box Model

Page 65: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Box Model

Page 66: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Box Model

wIf multiple declarations apply to a property, the last declaration overrides earlier specifications

Left border is 30px wide, inset style, and red

Page 67: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Backgrounds

wbackground-colorn Specifies background color for content, padding,

and border areasn Margin area is always transparentn Not inherited; initial value transparent

wbackground-imagen Specifies (using url() function) image that

will be tiled over an element

Page 68: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Backgrounds

<body style="background-image:url('CucumberFlowerPot.png')">

Page 69: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Normal Flow Layout

wIn normal flow processing, each displayed element has a corresponding box

n html element box is called initial containing block and corresponds to entire document

n Boxes of child elements are contained in boxes of parent

n Sibling block elements are laid out one on top of the other

n Sibling inline elements are one after the other

Page 70: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Normal Flow Layout(body)

(html)

Page 71: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Normal Flow Layout

Blockelementsonly

Page 72: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Normal Flow Layouthtml

bodydiv d1div d2div d3

div d4

Top edges ofblock boxes arein document order

Page 73: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Normal Flow Layout

wWhat is a “block element”?n Element with value block specified for its display property

n User agent style sheet (not CSS) specifies default values; typical block elements include html, body, p, pre, div, form, ol, ul, dl, hr, h1through h6

n Most other elements except li and table-related have inline specified for display

Page 74: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Normal Flow Layout

wWhen blocks stack, adjacent margins are collapsed to the size of the larger margin

Page 75: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Normal Flow Layout

wInitial value of width property is auto, which for block boxes means to make the content area as wide as possible within margin/padding constraints:

Width of block boxesincreases as browserclient area is widened

Page 76: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Normal Flow Layout

wCan also specify CSS length or percentage (of parent’s content width) for widthproperty

By default, width of right margin is adjusted to accommodate a change to width

Page 77: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Normal Flow Layout

wCan also specify CSS length or percentage (of parent’s content width) for widthproperty

Centering can be achieved by settingboth margins to auto

Page 78: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Normal Flow Layout

wBoxes corresponding to character cells and inline elements are laid out side by side in line boxes that are stacked one on top of the other

Character cells aligned by baseline

Heights based oncontent

Page 79: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Normal Flow Layout

Padding/borders/margins affect width but not height of inline boxes

Page 80: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Normal Flow Layout

wSpecify value for vertical-align to position an inline element within line box:

initial value of vertical-align

Page 81: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Beyond Normal Flow

wCSS allows for boxes to be positioned outside the normal flow:

n Relative positioning

span’s shifted backwards relative to normal flow

Page 82: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Beyond Normal Flow

wCSS allows for boxes to be positioned outside the normal flow:

n Float positioning

span taken out of normalflow and “floated” to theleft of its line box

Page 83: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Beyond Normal Flow

wCSS allows for boxes to be positioned outside the normal flow:

n Absolute positioning

span’s removed fromnormal flow andpositioned relativeto another box

Page 84: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Beyond Normal Flow

wProperties used to specify positioning:n position: static (initial value), relative, or absolutel Element is positioned if this property not staticl Properties left, right, top, bottom apply to

positioned elementsw Primary values are auto (initial value) or CSS length

n float: none, left, or rightl Applies to elements with static and relative

positioning only

Page 85: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Beyond Normal Flow

wRelative positioningn Specifying positive value for right property of

relatively positioned box moves it to left

<span style="background-color:red">&nbsp;&nbsp;&nbsp;&nbsp; </span><span class="right">Red</span>

spancontainingtext movesleft

Page 86: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Beyond Normal Flow

wRelative positioningn Specifying negative value for left property

also moves box to left

<span style="background-color:red">&nbsp;&nbsp;&nbsp;&nbsp; </span><span class="right">Red</span>

sameeffect asbefore

Page 87: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Beyond Normal Flow

wFloat positioningn Specify value for float property

Page 88: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Beyond Normal Flow

wFloat positioningn Specify value for float property

Floated element becomes a CSS blockelement (e.g., can set height and width)

Page 89: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Beyond Normal Flow

wAbsolute positioningn Specify location for corner of box relative to

positioned containing block

margin areapadding area

containingblock

This second paragraph has anote.

p elements are positioned (but don’t move!)

Page 90: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Beyond Normal Flow

wAbsolute positioningn Specify location for edges of box relative to

positioned containing block

Page 91: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Beyond Normal Flow

wAbsolute positioning10em padding top

edge

padding leftedge

Page 92: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Beyond Normal Flow

wAbsolute positioning

8em

Page 93: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

Beyond Normal Flow

wAbsolutely positioned box does not affect positioning of other boxes!

Second absolutelypositioned boxobscures first

Page 94: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Position-Related Properties

wz-index: drawing order for overlaid boxes (largest number drawn last)

Page 95: Cascading Style Sheets (CSS) · Style Sheets and HTML wRules of thumb: n Use external style sheets to define site-wide style n Prefer style sheets (either external or embedded) to

Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson’s slides

CSS Position-Related Properties

wdisplay: value none means that element and its descendants are not rendered and do not affect normal flowwvisibility: value hidden (initial value is visible) means that element and its descendants are not rendered but still do affect normal flow