Dreamweaver 8/Fireworks 8
J. Craig Ventner
- Hour 4
- Text Mark-up with CSS - Textbook, Ch. 4 - Adding Text to Your
Page
- CSS Styles Panel - Main Menu > Window >
CSS Styles
- Add a style = + Icon
- Edit a Style = Pencil Icon
- Trash a Style = Guess!
- Attach a New Style Sheet
- Three Layers of Styles
- Local Styles - "Local" to the Object being styled;
within the <body></body> of the web page
- Local Style Examples
- <font face="Comic
Sans MS" color ="green"
size="2" weight="bold">Object (Text,
Image)</font>
- <span style
="marign:5px;">Span
Tags for "in-line" text</span>
- Internal Styles - Internal to the document
- <head><style type="text/css">
td img {display: block;}
</style></head>
- External Style sheets - tigr_styles.css
- External styling is linked to each page.html
- One style sheet for an entire site! Efficient, Effective.
- Accessibility Considerations - Web Accessibility class.
- Federal Government Contractors must build accessible web
sites for the federal government.
- "The Cascade"
- Whichever style is closest to the object WINS!!
- Local trumps Internal
- Internal trumps External
- External is the "least of these."
- Always use External Style Sheets!!!!
- The Fun Part - Making External Style Sheets.
Back to Top
|
 |