Errata
Please email me errors at:
errata@joelsklar.com
- Page 44, Step f. The style rule property for the H1
element
should be border-bottom not bottom-border.
- Page 173, in table 4-1, For the syntax [att|=val] the example shown p[att|en] omits the '=' sign. The example should be p[att|=en]
- Page 180, Determining Rule Weight by Specificity
Text currently reads: p {color: red:}
It should read p {color: red;} - a semicolon after "red" not a colon.
- Page 217, The img element in the first paragraph is missing a closing slash, shown correctly here:
<img src="image.gif" style="vertical-align: text-top;" />
- Page 289, Step e. The floatbox class is applied to the <H2> element, not the <p> element to get the result shown in Figure 6-30.
- Page 388, Step c. The first <p> tag should be contained in angle brackets not parentheses.
- Page 626, the @media screen style property should end with a semi-colon as shown here:
@media screen {
body {font-family: sans-serif;}
}
- Page 626, the @media print style property should have a colon after "color" as shown here:
@media print {
body {font-family: serif; color: #000;}
}
- Pages 628 and 629, the font-size properties on all three examples should be followed by a colon, not a semi-colon. Text currently reads: font-size; 12pt;
It should read font-size: 12pt;.
This is what happens when you cut and paste bad code!