November 2005
Beginner
256 pages
3h 28m
English
In this lesson, you will learn how to fix some common CSS errors. You also will learn some tips for troubleshooting CSS.
The CSS code for this lesson is shown in Listing 22.1. The code contains 12 common CSS problems that will be corrected during the lesson.
Example 22.1. CSS Code Showing All the Rules with 12 Common Problems
body { font-family: times, times new roman, serif; } #container { border: 1px gray; background-image: url("background.jpg"); background-repeat: repeat-x; background-attach: fixed; width: 700; } h1 { font-size: 200%; color: none; } .introductionText { font-weight: bold; } h2 { font-size: 120% font-weight: normal; color: #34a32; } p, ul, { font-size: 80%; color: 333; } a:visited ...Read now
Unlock full access