Web Pages with Style

Rob Wall

StigmergicWeb

This document lives at http://www.stigmergicweb.org/presentations/css

Cascading Style Sheets

CSS is powerful!

Writing a CSS rule

Declarations

Multiple Declarations

Basic Properties

Text and background colour

Example

h1 {
	color:white;
	background-color:navy;
	font-family:arial, helvetica, sans-serif;
	font-weight:bolder;
	font-size:28px;
	}

How Many Rules

External Stylesheets

Practice