Style Sheets: CSS: Web Technologies A Computer Science Perspective
Style Sheets: CSS: Web Technologies A Computer Science Perspective
JEFFREY C. JACKSON
Chapter 3
Style Sheets:
CSS
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Motivation
• HTML markup can be used to represent
– Semantics: h1 means that an element is a top-level
heading
– Presentation: h1 elements look a certain way
• It’s advisable to separate semantics from
presentation because:
– It’s easier to present documents on multiple platforms
(browser, cell phone, spoken, …)
– It’s easier to generate documents with consistent look
– Semantic and presentation changes can be made
independently of one another (division of labor)
– User control of presentation is facilitated
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Style Sheet Languages
• Cascading Style Sheets (CSS)
– Applies to (X)HTML as well as XML
documents in general
– Focus of this chapter
• Extensible Stylesheet Language (XSL)
– Often used to transform one XML document
to another form, but can also add style
– XSL Transformations covered in later chapter
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Introduction
• A styled HTML document
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Introduction
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Introduction
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Introduction
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Introduction
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Introduction
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Introduction
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Introduction
• A styled HTML document
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Introduction
• Single document can be displayed on
multiple media platforms by tailoring style
sheets:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Syntax:
Selector Strings
• Single element type:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Syntax:
Selector Strings
• Single element type:
type selector
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Syntax:
Selector Strings
• Single element type:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Syntax:
Selector Strings
• Single element type:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Syntax:
Selector Strings
• Elements belonging to a style class:
class selector
– Referencing a style class in HTML:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Syntax:
Selector Strings
• Elements belonging to a style class:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Syntax:
Selector Strings
• Elements belonging to a style class:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Syntax:
Selector Strings
• Source anchor elements:
pseudo-classes
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Syntax:
Selector Strings
• Source anchor elements:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Syntax:
Selector Strings
• Source anchor elements:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Syntax:
Selector Strings
• Source anchor elements:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Syntax
• Style rules covered thus far follow ruleset
syntax
• At-rule is a second type of rule
URL relative to style sheet URL
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Style Sheets and HTML
• Style sheets referenced by link HTML
element are called external style sheets
• Style sheets can be embedded directly in
HTML document using style element
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Rule Cascade
• What if more than one style declaration
applies to a property of an element?
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Rule Cascade
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Rule Cascade
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Rule Cascade
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Rule Cascade
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Rule Cascade
• User can define a style sheet
– Explicitly (easy in IE)
– Implicitly (preferences)
• User/important highest priority in CSS2 to
accommodate users with special needs
– Rules made important by adding “!important”:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Rule Cascade
Specificity:
1. style attribute
2. rule with selector:
1. ID
2. class/pseudo-class
3. descendant/element type
4. universal
3. HTML attribute
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Rule Cascade
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Inheritance
• What if no style declaration applies to a
property of an element?
• Generally, the property value is inherited
from the nearest ancestor element that
has a value for the property
• If no ancestor has a value (or the property
does not inherit) then CSS defines an
initial value that is used
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Inheritance
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Inheritance
• Property values:
– Specified: value contained in declaration
• Absolute: value can be determined without
reference to context (e.g., 2cm)
• Relative: value depends on context (e.g., larger)
– Computed: absolute representation of relative
value (e.g., larger might be 1.2 x parent font
size)
– Actual: value actually used by browser (e.g.,
computed value might be rounded)
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Inheritance
• Most properties inherit computed value
– Exception discussed later: line-height
• A little thought can usually tell you whether
a property inherits or not
– Example: height does not inherit
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
• A font is a mapping from code points to
glyphs glyph
character cell
(content area)
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
• A font is a mapping from code points to
glyphs glyphs do not necessarily stay inside cells!
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
• A font family is a collection of related fonts
(typically differ in size, weight, etc.)
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
• A font family is a collection of related fonts
(typically differ in size, weight, etc.)
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
• A font family is a collection of related fonts
(typically differ in size, weight, etc.)
generic
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
generic
fonts are
system-
specific
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
• Many properties, such as font-size,
have a value that is a CSS length
• All CSS length values except 0 need units
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
• Reference font defines em and ex units
– Normally, reference font is the font of the
element being styled
– Exception: Using em/ex to specify value for
font-size
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
• Other ways to specify value for
font-size:
– Percentage (of parent font-size)
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
• Text is rendered using line boxes
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
• When line-height is greater than cell
height:
• Inheritance of line-height:
– Specified value if normal or unit-less number
– Computed value otherwise
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
• font shortcut property:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
• font shortcut property:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
• font shortcut property:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
• font shortcut property:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
• font shortcut property:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
• font shortcut property:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Font Properties
• font shortcut property:
specifying line-height
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Text Color
• Font color specified by color property
• Two primary ways of specifying colors:
– Color name: black, gray, silver, white, red,
lime, blue, yellow, aqua, fuchsia, maroon,
green, navy, olive, teal, purple, full list at
http://www.w3.org/TR/SVG11/types.html#Colo
rKeywords
– red/green/blue (RGB) values
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Text Color
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Text Color
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Box Model
• Every rendered element occupies a box:
(or outer edge)
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Box Model
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Box Model
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Box Model
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Box Model
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Box Model
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Box Model
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Box Model
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Box Model
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Box Model
• If multiple declarations apply to a property,
the last declaration overrides earlier
specifications
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Backgrounds
• background-color
– Specifies background color for content,
padding, and border areas
– Margin area is always transparent
– Not inherited; initial value transparent
• background-image
– Specifies (using url() function) image that
will be tiled over an element
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Backgrounds
<body style="background-image:url('CucumberFlowerPot.png')">
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Normal Flow Layout
• In normal flow processing, each displayed
element has a corresponding box
– html element box is called initial containing
block and corresponds to entire document
– Boxes of child elements are contained in
boxes of parent
– Sibling block elements are laid out one on top
of the other
– Sibling inline elements are one after the other
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Normal Flow Layout
(body)
(html)
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Normal Flow Layout
Block
elements
only
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Normal Flow Layout
html
body
div d1
div d2
div d3
div d4
Top edges of
block boxes are
in document order
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Normal Flow Layout
• What is a “block element”?
– Element with value block specified for its
display property
– User agent style sheet (not CSS) specifies
default values; typical block elements include
html, body, p, pre, div, form, ol, ul, dl,
hr, h1 through h6
– Most other elements except li and table-
related have inline specified for display
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Normal Flow Layout
• When blocks stack, adjacent margins are
collapsed to the size of the larger margin
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Normal Flow Layout
• Initial value of width property is auto,
which for block boxes means to make the
content area as wide as possible within
margin/padding constraints:
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Normal Flow Layout
• Can also specify CSS length or
percentage (of parent’s content width) for
width property
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Normal Flow Layout
• Can also specify CSS length or
percentage (of parent’s content width) for
width property
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Normal Flow Layout
• Boxes 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
Heights
based on
content
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Normal Flow Layout
• Specify value for vertical-align to
position an inline element within line box:
initial
value of
vertical-
align
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Beyond Normal Flow
• CSS allows for boxes to be positioned
outside the normal flow:
– Relative positioning
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Beyond Normal Flow
• CSS allows for boxes to be positioned
outside the normal flow:
– Relative positioning
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Beyond Normal Flow
• CSS allows for boxes to be positioned
outside the normal flow:
– Relative positioning
<span style="background-color:red">
</span><span class="right">Red</span>
<span style="background-color:yellow">
</span><span class="right">Yellow</span>
<span style="background-color:lime">
</span><span class="right">Green</span>
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Beyond Normal Flow
• CSS allows for boxes to be positioned
outside the normal flow:
– Float positioning
style rule that “floats” left
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Beyond Normal Flow
• CSS allows for boxes to be positioned
outside the normal flow:
– Float positioning
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Beyond Normal Flow
• CSS allows for boxes to be positioned
outside the normal flow:
– Absolute positioning
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Beyond Normal Flow
• CSS allows for boxes to be positioned
outside the normal flow:
– Absolute positioning
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Beyond Normal Flow
• Properties used to specify positioning:
– position: static (initial value), relative,
or absolute
• Element is positioned if this property not static
• Properties left, right, top, bottom apply to
positioned elements
– Primary values are auto (initial value) or CSS length
– float: none, left, or right
• Applies to elements with static and relative
positioning only
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Beyond Normal Flow
• Relative positioning
– Specifying positive value for right property
of relatively positioned box moves it to left
<span style="background-color:red">
</span><span class="right">Red</span>
span
containing
text moves
left
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Beyond Normal Flow
• Relative positioning
– Specifying negative value for left property
also moves box to left
<span style="background-color:red">
</span><span class="right">Red</span>
same
effect as
before
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Beyond Normal Flow
• Float positioning
– Specify value for float property
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Beyond Normal Flow
• Float positioning
– Specify value for float property
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Beyond Normal Flow
• Absolute positioning
– Specify location for corner of box relative to
positioned containing block
p elements are positioned (but don’t move!)
margin area
padding area
containing This second paragraph has a
block note.
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Beyond Normal Flow
• Absolute positioning
– Specify location for edges of box relative to
positioned containing block
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Beyond Normal Flow
• Absolute positioning
10em padding top
edge
padding left
edge
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Beyond Normal Flow
• Absolute positioning
8em
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
Beyond Normal Flow
• Absolutely positioned box does not affect
positioning of other boxes!
Second absolutely
positioned box
obscures first
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Position-Related Properties
• z-index: drawing order for overlaid
boxes (largest number drawn last)
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0
CSS Position-Related Properties
• display: value none means that element
and its descendants are not rendered and
do not affect normal flow
• visibility: value hidden (initial value
is visible) means that element and its
descendants are not rendered but still do
affect normal flow
Jackson, Web Technologies: A Computer Science Perspective, © 2007 Prentice-Hall, Inc. All rights reserved. 0-13-185603-0